SoringMVC-02-使用注解开发
2021-02-08 22:15
标签:pattern value not cat 装备 pac 容器 resource dispatch 1、还是配置web.xml 直接可以拿去用 2、在Spring配置文件中指定要扫描的包和使用注解开发 可以直接拿来用,作用写在注释中 3、用到的注解 指定当前类是一个controller,控制器,如果被扫描的话,则会自动装备在Spring中 也就是我们访问的 url 地址拼接 4、遇到的错误 又遇到jar包没有导入项目的lib目录的情况,而出现404错误 SoringMVC-02-使用注解开发 标签:pattern value not cat 装备 pac 容器 resource dispatch 原文地址:https://www.cnblogs.com/bingstudy/p/13065280.html3、使用注解开发
@Controller
public class helloAnno {
@RequestMapping("/h1")
public String hello(Model model) {
model.addAttribute("msg", "hello,SpringMVC!!");
return "test";
}
}
上一篇:脚本安装Apache与工作模式
下一篇:CSS定位
文章标题:SoringMVC-02-使用注解开发
文章链接:http://soscw.com/index.php/essay/52823.html