菜鸟学习Spring——SpringMVC注解版前台向后台传值的两种方式
分类: 菜鸟学习SSH2015-01-21 11:3410028人阅读评论(1)收藏举报
一、概述。
在很多企业的开法中常常用到
SpringMVC+Spring+Hibernate(mybatis)这样的架构,SpringMVC相当于Struts是页面到Contorller直接的交互的框架也是界面把信息传输到Contorller层的一种架构,通过这个架构可以让我们把页面和Contorller层解耦,使得开发人员的分工更加明确。
二、代码演示。
1、首先配置SpringMVC环境。
1.1导入jar。
值得注意的是红色标记的
commons-logging这个jar包一定得引入进去不然会报错。
1.2、xml配置文件。
web.xml
[html] view plaincopyprint?
1.
2. xmlns:xsi=\XMLSchema-instance\ xmlns=\/javaee\ xsi:schemaLocation=\cp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd\ id=\ version=\> 3. 4. 5. 6. 7. 8.