This note is about the configuration of testing environment with Spring.
Spring MVC
Web.xml
url-pattern
should not have *, otherwise the jsp page will be displayed as plaintext since it has conflict with default servlet url-pattern.
<?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_3_1.xsd"
version= "3.1" >
<display-name> Spring MVC</display-name>
<absolute-ordering/>
<listener>
<listener-class> org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet-mapping>
<servlet-name> default</servlet-name>
<url-pattern> /static/*</url-pattern>
</servlet-mapping>
<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> /ws/*</url-pattern>
</servlet-mapping>
<context-param>
<param-name> contextConfigLocation</param-name>
<!-- <param-value>/WEB-INF/applicationContext*.xml</param-value> -->
<param-value> classpath:beans.xml</param-value>
</context-param>
<context-param>
<param-name> PARAMETER_ENCODING</param-name>
<param-value> UTF-8</param-value>
</context-param>
</web-app>
Spring Websocket
402, 500 errors are fix by updating all spring version to 4.1.7
java.lang.IllegalStateException: A SockJsMessageCodec is required but not available: Add Jackson 2 to the classpath, or configure a custom SockJsMessageCodec.
<dependency>
<groupId> com.fasterxml.jackson.core</groupId>
<artifactId> jackson-core</artifactId>
<version> 2.5.4</version>
</dependency>
<dependency>
<groupId> com.fasterxml.jackson.core</groupId>
<artifactId> jackson-annotations</artifactId>
<version> 2.5.4</version>
</dependency>
<dependency>
<groupId> com.fasterxml.jackson.core</groupId>
<artifactId> jackson-databind</artifactId>
<version> 2.5.4</version>
</dependency>
竟然无法拒绝你的打赏
Framework
Updated on December 10, 2017
Chun Fan 范春