Always private
DuckDuckGo never tracks your searches.
Learn More
You can hide this reminder in Search Settings
All regions
Argentina
Australia
Austria
Belgium (fr)
Belgium (nl)
Brazil
Bulgaria
Canada (en)
Canada (fr)
Catalonia
Chile
China
Colombia
Croatia
Czech Republic
Denmark
Estonia
Finland
France
Germany
Greece
Hong Kong
Hungary
Iceland
India (en)
Indonesia (en)
Ireland
Israel (en)
Italy
Japan
Korea
Latvia
Lithuania
Malaysia (en)
Mexico
Netherlands
New Zealand
Norway
Pakistan (en)
Peru
Philippines (en)
Poland
Portugal
Romania
Russia
Saudi Arabia
Singapore
Slovakia
Slovenia
South Africa
Spain (ca)
Spain (es)
Sweden
Switzerland (de)
Switzerland (fr)
Taiwan
Thailand (en)
Turkey
Ukraine
United Kingdom
US (English)
US (Spanish)
Vietnam (en)
Safe search: moderate
Strict
Moderate
Off
Any time
Any time
Past day
Past week
Past month
Past year
  1. stackoverflow.com

    If you're willing to put apache in front of your web container, you can use apache's mod_proxy to forward request to the right place.. One way this could work, would be deploy the separate wars at separate prefixes as in your first case (sales and marketing) and then use ProxyPass to send the requests to the correct place:
  2. docs.oracle.com

    6 Getting Started with Web Applications. This chapter introduces web applications, which typically use JavaServer Faces technology and/or Java Servlet technology. A web application is a dynamic extension of a web or application server. Web applications are of the following types:
  3. docs.oracle.com

    Chapter 3 Getting Started with Web Applications. A web application is a dynamic extension of a web or application server. Web applications are of the following types: Presentation-oriented: A presentation-oriented web application generates interactive web pages containing various types of markup language (HTML, XHTML, XML, and so on) and dynamic content in response to requests.
  4. books.google.com

    The comprehensive Wrox guide for creating Java web applications for the enterprise This guide shows Java software developers and software engineers how to build complex web applications in an enterprise environment. You'll begin with an introduction to the Java Enterprise Edition and the basic web application, then set up a development application server environment, learn about the tools used ...
  5. geeksforgeeks.org

    Jan 25, 2024Commonly Used Databases. MySQL: MySQL is really good at storing structured data in tables like your structured bookshelf where each database table is like a shelf, and each row on the database is a record containing specific information. MySQL is widely used and plays well with Java. PostgreSQL: PostgreSQL is a bit like MySQL, but it's known for handling complex queries and large datasets ...
  6. Can’t find what you’re looking for?

    Help us improve DuckDuckGo searches with your feedback

  1. If you're willing to put apache in front of your web container, you can use apache's mod_proxy to forward request to the right place.

    One way this could work, would be deploy the separate wars at separate prefixes as in your first case (sales and marketing) and then use ProxyPass to send the requests to the correct place:

    ProxyPass /widget/sales http://example.com/sales/widget
    ProxyPass /sky-hooks/sales http://example.com/sales/sky-hooks
    
    ProxyPass /widget/marketing http://example.com/marketing/widget
    ProxyPass /sky-hooks/marketing http://example.com/marketing/sky-hooks

    Its probably a better idea to just refactor your routing though - it might be hard to maintain.

    (EDIT: I originally suggested mod_rewrite, but I wanted to make my answer more specific, and it looks like this could be done purely with proxying)

    --nont

    Was this helpful?
Custom date rangeX