如何通过eclipse建立springMVC的简单项目,现在简单介绍一下。
工具/原料
eclipse
相关jar包
方法/步骤
1、新建一个动态web项目,选择DynamicWebProject点击NEXT填写项目名称,点NEXTNEXT选中Generateweb.xml选项,结束。
2、在项目下建立相关文件夹,包括java,resources(存放spring等资源文件),view(存放动态页面),右键点击项目,修改properties->sources为java和resources(新建资源文件夹)
3、引入相关ja筠续师诈r包,如下,包括commons-logging-1.1.1.jar;spring-beans-4.0.5.RELEASE缕计瓤账.jar;spring-context-4.0.5.RELEASE.jar;spring-context-support-4.0.5.RELEASE.jar;spring-core-4.0.5.RELEASE.jar;spring-expression-4.0.5.RELEASE.jar;spring-web-4.0.5.RELEASE.jar;spring-webmvc-4.0.5.RELEASE.jar;spring-webmvc-portlet-4.0.5.RELEASE.jar等
4、修改web.xml文件,增加spring等相关内容。在resources目录下新建spring目录文件夹,在其中新建springMVC.xml,applicationContext-web.xml配置文件,编辑相关内容。
5、在view目录下建index.jsp,编辑页面内容保存。修改web.xml,建欢迎殳陌抻泥页:<welcome幻腾寂埒-file-list><welcome-file>view/index.jsp</welcome-file></welcome-file-list>保存。
6、建立springcontroller文件新建class文件;编辑返回页面byebye.jsp
7、通过tomcat启动,在浏览器输入:http://localhost:9090/springMVC/即可,点击链接,调用controller返回byebye页面,至此项目建立成功。