WSO2 AS 5.1.0 /wso2as-5.1.0/repository/conf/tomcat/carbon/WEB-INF/web.xml。 我在上面的路径中添加了一个新的servlet,但是当AS启动时我的servlet没有被加载。 这可以在AS 5.0.1上运行,但不适用于5.1.0。我怎么能在这个版本中做到这一点? 谢谢。
web.xml
<servlet>
<servlet-name>config</servlet-name>
<display-name>config Servlet</display-name>
<description>config Servlet</description>
<servlet-class>com.my.config</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
答案 0 :(得分:0)
您可以开发自己的Web应用程序,而不是修改提到的web.xml。建议不要修改该文件。
WSO2 Application Server 5.1.0附带了新的class loading environments。
请参阅http://docs.wso2.org/wiki/display/AS510/Webapp+ClassLoading
因此,加载自己的Servlet的推荐方法是开发自己的Web应用程序。您可以选择适合您的环境。
谢谢!