SpringMVC 基础及应用(一)--HelloWorld
准备工具:
eclipse-jee-mars-2-win32-x86_64
apache-tomcat-6.0.48
SpringMVC需要的jar包
1、SpringMVC和Struts一样是一个MVC框架,和Spring无缝连接。和Struts2有点相似。
2、SpringMVC属于SpringFrameWork的后续产品,Spring框架提供了构建Web应用程序的全功能MVC模块。
3、使用Spring可插入的MVC架构,可以选择是使用的内置的Spring web框架还可以是Struts这样的Web框架。
1、file-->new-->Dynamic Web Project-->SpringMVC1
2、选择Apache Tomcat v6.0,配置好服务。
3、Finish
4、生成一个SpringMVC1 Project
5、添加 lib
6、web.xml 配置
7、control类:HelloWorldController.java
8、spring-servlet.xml 配置
详细解析: http://www.cnblogs.com/yw0219/p/6086571.html
9、apache 配置
启动后报错:
重命名下名称
springMVC-servlet.xml
查看页面
http://localhost:8080/SpringMVC1/test1/helloworld
千里之行始于足下,just hello world!