spring mvc项目搭建:
2016-12-05 本文已影响25人
赵周桥lucky
1.创建WEB工程
2.添加spring mvc依赖包
3.在web.xml中启动spring框架
commons-logging.jar(日志输出)
spring-webmvc.jar(SpringMVC核心包)
spring.jar (Spring核心包)
4.编写后台逻辑
5.编写Controller控制器
6.编写applicationContext.xml
编写web.xml步骤:
1.编写启动spring框架的Servlet
2.在Servlet标签中注册applicationContext.xml
3.在Servlet标签中设置spring启动类在类加载时启动
编写applicationContext.xml步骤:
1.注册Controller控制器
2.捆绑URL和Controller
3.设置URL的前缀和后缀