SSM框架的配置和实现
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
SSM框架的配置和登录功能demo的实现1.S SM配置
1.1配置环境
Eclipse版本:MyEclipse Enterprise 2015 Stable 2.0
JDK版本:jdk1.7.0_15
Spring版本:spring3.1
Struts版本:Struts2
Mybatis版本:Mybatis3.1
1.2搭建Spring环境
WEB项目(右键)—MyEclipse—Project Facets[Capabilities]—Install Spring Facet,点击。
1.3搭建Struts环境
WEB项目(右键)—MyEclipse—Project Facets[Capabilities]—Install Apache Struts[2.x] Facet,点击。
1.4 引入jar包
jar文件放入lib文件夹中。
1.5配置applicationContext.xml
xmlns:xsi="/2001/XMLSchema-instance"xmlns:p="http://www.springfram /schema/p" xmlns:context="/schema/context" xmlns:mvc="/schema/mvc" xsi:schemaLocation="/schema/beans /schema/beans/spring-beans-3.1.xsd http://www.sprin /schema/context /schema/context/spring-cont ext-3.1.xsd /schema/mvc /schema/mvc/spring-mvc-4.0.xsd"> class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> destroy-method="close">
1.6测试配置进度
项目(右键)—Run As—MyEclipse Server Application –点击服务器---Finish。页面自动弹出index.jsp页面。
1.7调整显示浏览器
将浏览器设置为自己的浏览器,可new一个自己的浏览器。
1.8调整jsp显示编码方式
设置jsp页面的默认编码格式为UTF-8
2SSM登录功能实现DEMO 2.0 数据库设计
2.1登录页面代码
2.2 struts.xml文件配置
1.4loginAction代码
这一步需要注意jsp页面的变量需要在Action中属性私有化,调用格式为变量名+属性名,例name=”erName”
2.4 biz层代码biz接口层代码
实现类代码
2.5 dao层代码dao接口层代码
实现类代码
bean(实体)层代码
2.6 Mapper文件
select * from LOGIN