2009-3-26 19:43:18 org.apache.catalina.core.ApplicationContext log
信息: Marking servlet NextServlet as unavailable
2009-3-26 19:43:18 org.apache.catalina.core.StandardWrapperValve invoke
严重: Allocate exception for servlet NextServlet
java.lang.Error: Unresolved compilation problems: 
The import org.cumt.Student.Model cannot be resolved
The import org.cumt.Student.Model cannot be resolved
The import org.cumt.Student.Model cannot be resolved
The import org.cumt.Student.Model cannot be resolved
The import org.cumt.Student.Model cannot be resolved
ShowAction cannot be resolved to a type
AddAction cannot be resolved to a type
AddAction cannot be resolved to a type
EditAction cannot be resolved to a type
SaveAction cannot be resolved to a type
IAction cannot be resolved to a type
IAction cannot be resolved to a type at org.cumt.Student.Control.NextServlet.<init>(NextServlet.java:10)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
at java.lang.Class.newInstance0(Class.java:355)
at java.lang.Class.newInstance(Class.java:308)
at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1115)
at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:808)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:129)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
2009-3-26 19:45:11 org.apache.catalina.core.StandardWrapperValve invoke
信息: Servlet NextServlet is currently unavailable
2009-3-26 19:47:25 org.apache.catalina.core.StandardWrapperValve invoke
信息: Servlet NextServlet is currently unavailable
****************以下是Action相关的类(接口)的继承关系******************
IAction(接口)-----------ShowAction(类)
                |
                 -------AddAction(类)
                |
                 -------EditAction(类)
                |
                 -------SaveAction(类)
                |
                 -------NullAction(类)//其中这个NullAction里面并没有什么功能,是老师给的样本代码里有的,这样做有什么作用?