我有简单的Spring配置
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/pages/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
<!-- Scan for components under this package -->
<context:component-scan base-package="com.osfg.test" />
我的控制器是
package com.osfg.test;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* @author athakur
*/
@Controller
public class TestController {
@RequestMapping(value="/test", method=RequestMethod.GET)
public String welcome() {
return "test";
}
}
我的JSP是
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>OSFG Test Page</title>
<link href="CSS/test.css" rel="stylesheet">
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
所以我添加
<mvc:default-servlet-handler />
到我的Spring配置,现在页面本身停止加载给出404。
同样令人惊讶的是,一切正常(使用CSS)将遵循config
<mvc:view-controller path="/test" view-name="test"/>
<mvc:default-servlet-handler />
直接渲染无控制器参与。
答案 0 :(得分:0)
我认为对资源进行简单配置就足够了。
<mvc:resources mapping="/resources/**" location="/resources/" />