Это мой index.htmlОшибка инстанцировании сервлет класса
<form action="submitForm" method="get"> <input type="submit" name="Submit" value="submit" onclick="" /> </form>
Это мой web.xml
`<servlet>
<servlet-name>submitForm</servlet-name>
<servlet-class>student.StudentSurveyFormSubmit</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>submitForm</servlet-name>
<url-pattern>/submitForm</url-pattern>
</servlet-mapping>`
И мой класс сервлета
package student; @WebServlet("/StudentSurveyFormSubmit") public class StudentSurveyFormSubmit extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); out.println("<h1>" + "Hi, "+request.getParameter("firstName") +" I am here" + "</h1>"); }}
Всякий раз, когда я разверните мой файл войны и нажмите кнопку sumbot. Я получаю Исключение составляет:
Сервер обнаружил внутреннюю ошибку(), которая помешала ему выполнить этот запрос.
исключение
javax.servlet.ServletException: Ошибка инстанцировании класс сервлета student.StudentSurveyFormSubmit org.jboss.as.web.security.SecurityContextAssociationValve.invoke (SecurityContextAssociationValve.java:153) org.apache.catalina. valve.ErrorReportValve.invoke (ErrorReportValve.java:102) org.apache.catalina.connector.CoyoteAdapter.service (CoyoteAdapter.java:368) org.apache.coyote.http11.Http11Processor.process (Http11Processor.java:877) org.apache.coyote.http11.Http11Protocol $ Http11ConnectionHandler.process (Http11Protocol.java:671) org.apache.tomcat .util.net.JIoEndpoint $ Worker.run (JIoEndpoint.java:930) java.lang.Thread.run (Неизвестный источник)
Где я иду не так?
У вас есть больше об этом сообщении об ошибке? Обычно есть еще один стек, обозначенный «Caused by». – Thilo