亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

springmvc使用表單標簽報異常

springmvc使用表單標簽報異常

讀者123 2017-05-07 23:01:33
springmvc使用表單標簽報異常:java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered?引用了:<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>再使用:“<form:form action="addStudent" method="post"> <form:label path="name">姓名:</form:label><form:input path="name"/> <form:textarea path="text"/></form:form>”就報異常,求助。 如果不使用 上面的spring 的form 標簽就不報錯。web.xml:<?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="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" id="WebApp_ID" version="2.5"> <servlet> <servlet-name>SpringMVC</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>SpringMVC</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list></web-app>WEB-INF 目錄下有SpringMVC-servlet.xml:<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="? ? ? ? http://www.springframework.org/schema/beans?? ? ? ? http://www.springframework.org/schema/beans/spring-beans-3.0.xsd? ? ? ? http://www.springframework.org/schema/context?? ? ? ? http://www.springframework.org/schema/context/spring-context.xsd? ? ? ? http://www.springframework.org/schema/mvc? ? ? ? http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <context:component-scan base-package="test2" /> ? </beans>
查看完整描述

1 回答

?
younghu

TA貢獻25條經驗 獲得超6個贊

<servlet>
<servlet-name>SpringMVC</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringMVC</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

這個配置錯誤,加上一個

<servlet>
????<servlet-name>SpringMVC</servlet-name>
????<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
????<init-param>
??????<param-name>contextConfigLocation</param-name>
??????<param-value>classpath:xxx.xml</param-value>
????</init-param>
????<load-on-startup>1</load-on-startup>
??</servlet>
??<servlet-mapping>
????<servlet-name>SpringMVC</servlet-name>
????<url-pattern>/</url-pattern>
??</servlet-mapping>

你配置文件少了一個contextConfigLocation

查看完整回答
反對 回復 2017-05-08
  • 1 回答
  • 0 關注
  • 3190 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號