我想覆盖ServletContext.getResource()
方法。为了自己管理.jsp
个文件,而不是将所有.jsp
个文件放在webapp/
目录下。
目前,我可以在Jetty服务器或Tomcat服务器上进行修补,但是有一种常用的方法吗?
答案 0 :(得分:0)
是的,您可以更改tomcat服务器的server.xml中的appBase属性,例如:
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">