Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is the war directory used by the GWT compiler as both an input and output directory to the compiler process?

0
Posted

Is the war directory used by the GWT compiler as both an input and output directory to the compiler process?

0

In GWT 1.6, the compiler generates output in a directory structure following the Web Application Archive (WAR) standard layout. This is a newly introduced feature that makes it easier to deploy your application on any servlet container, like Jetty, Tomcat, or the Google App Engine Java runtime. See Chapter 9 of the Servlet 2.5 API specification for more details on the WAR standard layout. Following the convention, developers may place their static resources, including their host HTML page, in the war/ directory, where is the name you specify in your module XML file via the rename-to attribute (i.e. ). The question has come up as to whether the GWT compiler requires this resources to be present in the same war directory structure that will be used for output, or if it is possible to specify a separate input source that could be used to read in required resources. The answer: it is indeed possible to use a totally independent input source and

0

Starting with GWT 1.6, the compiler generates output in a directory structure following the Web Application Archive (WAR) standard layout. This feature makes it easier to deploy your application on any servlet container, like Jetty, Tomcat, or the Google App Engine Java runtime. See Chapter 9 of the Servlet 2.5 API specification for more details on the WAR standard layout. Following the convention, developers may place their static resources, including their host HTML page, in the war/ directory, where is the name you specify in your module XML file via the rename-to attribute (i.e. ). The question has come up as to whether the GWT compiler requires this resources to be present in the same war directory structure that will be used for output, or if it is possible to specify a separate input source that could be used to read in required resources. The answer: it is indeed possible to use a totally independent input source and only use the WAR

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123