霸道小王子
2018-09-04 20:31
大神,教教我
看起来是没有在pom.xml文件中引入注解的依赖,当然也可能是没有配置注解扫描器
1.添加注解依赖,请到pom.xml添加如下代码:
<!--注解配置的JAR包--> <!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api --> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>1.3.2</version> </dependency>
2.请到springmvc-config.xml文件添加如下代码:
<!--开启注解--> <context:annotation-config/> <!--对controller所在的包配置注解扫描器--> <context:componet-scan base-package="com.imooc.controller"/>
IDEA 在我们书写代码的时候自动帮我们优化导入的包,比如自动去掉一些没有用到的包。对于同名的包,需要手动 Alt + Enter 进行导入。
SpringMVC数据绑定入门
70567 学习 · 64 问题
相似问题