我在Eclipse LUNA上使用Wildfly(JBoss)9.0.0,如果我对JSP进行更改,则不会在浏览器上反映出来。我每次都要重启服务器。然而,Jboss 7.2并不是直接显示更改的情况。
答案 0 :(得分:0)
您需要设置jsp-config以在Wildfly standalone.xml中启用开发模式。
<subsystem xmlns="urn:jboss:domain:undertow:2.0">
<buffer-cache name="default"/>
<server name="default-server">
<http-listener name="default" socket-binding="http"/>
<host name="default-host" alias="localhost">
<location name="/" handler="welcome-content"/>
<filter-ref name="server-header"/>
<filter-ref name="x-powered-by-header"/>
</host>
</server>
<servlet-container name="default">
<jsp-config development="true" keep-generated="false" check-interval="1" modification-test-interval="1"/>
<websockets/>
</servlet-container>
<handlers>
<file name="welcome-content" path="${jboss.home.dir}/welcome-content"/>
</handlers>
<filters>
<response-header name="server-header" header-name="Server" header-value="WildFly/8"/>
<response-header name="x-powered-by-header" header-name="X-Powered-By" header-value="Undertow/1"/>
</filters>
</subsystem>