@GetMapping无效解决办法
在SSM框架中,可以使用注解来减轻开发的工作量,掌握每个注解的作用以及底层实现机制便于分析问题。最近遇到@GetMapping无效的情形,下面就解决方法进行总结。
原因分析
https://www.jianshu.com/p/69e9f9ed5b36 里,对@GetMapping无效的原因进行了详细分析。这里不在重述。
解决办法
1、在配置xml文件里,添加:
<mvc:annotation-driven />
2、为了避免添加注解驱动后引起编译问题,还需要在xml配置文件的beans里添加如下属性。
xmlns:mvc="http://www.springframework.org/schema/mvc"
以及给xsi:schemaLocation增加赋值项:
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
修改后,springmv-config.xml配置文件内容大致如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<mvc:annotation-driven />
<!-- 指定需要扫描的包 -->
<context:component-scan base-package="com.example.controller" />
<!-- 定义视图解析器 -->
<bean id="viewResolver" class=
"org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- 设置前缀 -->
<property name="prefix" value="/WEB-INF/jsp/" />
<!-- 设置后缀 -->
<property name="suffix" value=".jsp" />
</bean>
</beans>
验证
1、测试代码
@Controller
@RequestMapping(value = "/hello")
public class FirstController {
@GetMapping(value = "/3")
public String test3(HttpServletRequest request, HttpServletResponse response, Model model) throws Exception {
// 向模型对象中添加数据
model.addAttribute("msg", "这是我的第二个Spring MVC程序");
// 返回视图页面
return "first";
}
}
2、测试结果