spring+springmvc+ibatis整合注解方式实例

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

1.需求说明

实现用户通过数据库验证登录需求,采用Myeclipse+Tomcat 6.0+Mysql 5.0+JDK 1.6

2.数据库表

开发所用是Mysql数据库,只建立单张用户表T_USER,表结构如下:

sql语句如下:

CREATE TABLE `t_user` (

`ID` int(11) NOT NULL auto_increment,

`USERNAME` varchar(255) default NULL,

`PASSWORD` varchar(255) default NULL,

PRIMARY KEY (`ID`)

);

3.构建源代码目录

4.用到的jar包(见附件Archive.rar)

5.各项Xml配置文件详解

(1)web.xml文件(Tomcat使用)

服务器根据配置内容初始化spring框架,springmvc框架和log4j日志框架

xmlns="/xml/ns/javaee"

xmlns:xsi="/2001/XMLSchema-instance"

xsi:schemaLocation="/xml/ns/javaee

/xml/ns/javaee/web-app_2_5.xsd">

ISS

Spring,SpringMvc,Ibatis

webAppRootKey

spring_springmvc_ibatis.root

log4jConfigLocation

/WEB-INF/classes/log4j.properties

contextConfigLocation

/WEB-INF/classes/applicationContext.xml

characterEncodingFilter

org.springframework.web.filter.CharacterEncodingFil ter

encoding

UTF-8

forceEncoding

true

characterEncodingFilter

/*

springSecurityFilterChain

org.springframework.web.filter.DelegatingFil terProxy

springSecurityFilterChain

/*

org.springframework.web.util.Log4jConfigLi stener

org.springframework.web.context.ContextLoaderList ener

springmvc

org.springframework.web.servlet.DispatcherServlet< /servlet-class>

contextConfigLocation

/WEB-INF/classes/springmvc-servlet.xml

2

springmvc

/

60

相关文档
最新文档