web.xml映射配置变为/,不再是.action。
Controller映射必须加.action或.do,页面路径中才能写后缀.action或.do,否则404。不会自动识别.action后缀。
版本变动害死人!
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<display-name>Archetype Created Web Application</display-name>
<welcome-file-list>
<welcome-file>/index.action</welcome-file>
</welcome-file-list>
<!-- post乱码过虑器 -->
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>utf-8</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<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:springmvc.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>
</web-app>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
https://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="com.shopping"/>
<mvc:annotation-driven />
<mvc:annotation-driven conversion-service="conversionService"/>
<!-- mapping是在相对项目根目录的路径,location是资源在webapp下的绝对路径。
第一行的意思是:页面中写 src="js/xxxx.js",就会去/WEB-INF/ui/js/文件夹下查找xxxx.js。
当然src="js/xxxx.js"最终生成的完整路径必须相对于项目根路径,因为js父目录即为项目根目录。
最好使用前述相对路径写法,写src="<c:url value='/js/xxxx.js'/>"也可以,但编程时点不过去。
好处是所有的html资源全部在/WEB-INF/ui/下,编程时相对路径好引用;执行时全部拦截,后缀随意,@Controller中映射配置好即可。
且.jsp必须过Controller就可以加附带功能,静态页面又可以直接过。
<script type="application/javascript" src="js/hello.js"></script>
<script type="application/javascript" src="<c:url value='/js/hello.js'/>"></script>
生成
<script type="application/javascript" src="js/hello.js"></script>
<script type="application/javascript" src="/demo04_war_exploded/js/hello.js"></script>
注意web.xml中的url-pattern不是/*,是/。
-->
<mvc:resources mapping="js/**" location="/WEB-INF/ui/js/" />
<mvc:resources mapping="image/**" location="/WEB-INF/ui/image/" />
<mvc:resources mapping="css/**" location="/WEB-INF/ui/css/" />
<mvc:resources mapping="dtree/**" location="/WEB-INF/ui/dtree/" />
<!-- 视图解析器。定义跳转的文件的前后缀 ,视图模式配置 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 这里的配置我的理解是自动给后面action的方法return的字符串加上前缀和后缀,变成一个 可用的url地址 -->
<property name="prefix" value="/WEB-INF/ui/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- 配置文件上传,如果没有使用文件上传可以不用配置,当然如果不配,那么配置文件中也不必引入上传组件包 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 默认编码 -->
<property name="defaultEncoding" value="utf-8"/>
<!-- 文件大小最大值 -->
<property name="maxUploadSize" value="10485760000"/>
<!-- 内存中的最大值 -->
<property name="maxInMemorySize" value="40960"/>
</bean>
<bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
<property name="converters">
<list>
<bean class="com.shopping.controller.converter.CustomDateConverter"/>
</list>
</property>
</bean>
</beans>