我第一次尝试使用ServletContextListener在每次应用程序部署时执行一个特定的函数。为此我已经采用了一个简单的java类文件并在其上实现了ServletContextListener并在web.xml中声明了listner但是在部署它时正在给出错误
SEVERE: Error listenerStart in netbeans ..
Apache tomcat server logs in netbeans..
2013年11月15日上午11:59:03 org.apache.catalina.core.StandardContext listenerStart 严重:配置app.classes.ContextListenerProcess类的应用程序侦听器时出错 java.lang.IllegalAccessException:类org.apache.catalina.core.DefaultInstanceManager无法使用修饰符“”
访问类app.classes.ContextListenerProcess的成员
这是我实现ServletContextListener
的java类文件package app.classes;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
@WebListener()
class ContextListenerProcess implements ServletContextListener {
@Override
public void contextDestroyed(ServletContextEvent sce) {
}
@Override
public void contextInitialized(ServletContextEvent sce) {
// Do your startup work here
System.out.println("Processing Started .....");
}
}
这是我的web.xml添加ContextListenerProcess类...
<listener>
<listener-class>app.classes.ContextListenerProcess</listener-class>
</listener>
请各位帮我解决这个问题.. 提前谢谢..
答案 0 :(得分:1)
您的ContextListenerProcess
课程需要公开,而不是私有。
答案 1 :(得分:0)
我试过你的代码示例,它对我有用。
package app.classes;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
/**
* Application Lifecycle Listener implementation class ContextListenerProcess
*
*/
@WebListener
public class ContextListenerProcess implements ServletContextListener {
/**
* Default constructor.
*/
public ContextListenerProcess() {
// TODO Auto-generated constructor stub
}
public void contextDestroyed(ServletContextEvent sce) {
}
public void contextInitialized(ServletContextEvent sce) {
// Do your startup work here
System.out.println("Processing Started .....");
}
}
这是我的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- Use this definition if using a Java EE 6 container This also stops Eclipse
from complaining that 3.0 is not a valid version <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> -->
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<listener>
<listener-class>app.classes.ContextListenerProcess</listener-class>
</listener>
<servlet>
<description></description>
<display-name>WebListenerServlet</display-name>
<servlet-name>WebListenerServlet</servlet-name>
<servlet-class>app.classes.WebListenerServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>WebListenerServlet</servlet-name>
<url-pattern>/index.html</url-pattern>
</servlet-mapping>
</web-app>
使用此配置运行应用程序后,它成功了,我在启动tomcat时在控制台上看到Processing Started .....
消息。我只添加
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
你的代码和我的代码之间的区别是你在@WebListener注释后放置了括号,你应该删除它,而你的ContextListenerProcess类没有访问修饰符,这意味着它是默认的,它应该是公共的。