Creating Java Web Application Software

I mean using a Java web application to create a custom website, 1. so the user can specify a background image, css, etc. 2. The user can specify other parameters 2. and at the end of the process, the user can download the WAR file, ready for deployment, wherever they wish.

So, what is the easiest way to programmatically create a Java web application to deploy to Tomcat?

Is there a framework that I can use, or do I need to start from scratch?

The following screenshots are taken from ArcGIS Server 10, where the user can create a new web application on the fly.

Create a web app 1Create a web app 2Create a web app 3

+3
source share
4 answers

, css ..

. -.

, , DB

+4

, .war - , .zip , , .

, , , , ZIP . "", .

, .

+3

shrinkwrap ? -, , .

+1

Set standards for graphic names / sizes, style sheets, etc. and ask the web application to extract them from an external source (say, another host on the same server). For instance. your webapp will be hosted under http: //xxx.yyy.zzz/webapp , and the resources are located in a separate directory / host on your server, accessible under http: //xxx.yyy.zzz/resources .

0
source

All Articles