`
hello123654789
  • 浏览: 12652 次
文章分类
社区版块
存档分类
最新评论

SpringMVC+MyBatis(最新)

阅读更多
目前主流的Web MVC框架,除了Struts这个主力 外,还有Spring MVC,主要是由于Spring MVC配置比较简单,使用起来也十分明了,非常灵活,与Spring 集成较好,对RESTful API的支持也比struts要好。
MyBatis是ibatis的升级版,作为hibernate的老对手,它 是一个可以自定义SQL、存储过程和高级映射的持久层框架。
与hibernate的主要区别就是mybatis是半自动化的,而hibernate是全自动的,所以当应用需求越来越复杂的时候,自动化的sql显得比较笨拙。
由于前段时间接了个项目要用springmvc做,所以我抱着练手的态度,又玩起了整合框架的游戏。经常搭框架的人应该都清楚,框架搭建的核心就是配置文件。所以我主要贴下几个配置文件的代码。还是那句话,我都是写好配置文件之后,运行报错再加jar。这里列一下我用的jar包(应该是最少的):

备注:上图有一些额外的jar,比如我用的数据库连接池是阿里巴巴的druid、日志框架式logback,所以引入了相关jar。关于这两个框架的使用和配置都是非常简单的,所以这里就不细说。
1.整合SpringMVC
springMybatis-servlet.xml:

[html] view plain copy



 

<?xml version="1.0" encoding="UTF-8"?>   
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
       xmlns:context="http://www.springframework.org/schema/context" 
       xmlns:mvc="http://www.springframework.org/schema/mvc" 
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> 
     
        <!-- 启用spring mvc 注解--> 
    <mvc:annotation-driven>  
    </mvc:annotation-driven> 
     
    <!-- 自动扫描的包名 ,使Spring支持自动检测组件,如注解的Controller--> 
    <context:component-scan base-package="com.alibaba.controller" /> 
    <context:component-scan base-package="com.alibaba.service"/> 
     
     
    <!-- 视图解析器:定义跳转的文件的前后缀 -->   
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">   
        <property name="prefix" value="/WEB-INF/jsp/" />   
        <property name="suffix" value=".jsp" />  <!--可为空,方便实现自已的依据扩展名来选择视图解释类的逻辑  --> 
    </bean>   
 
    <!--配置拦截器, 多个拦截器,顺序执行 -->  
    <mvc:interceptors>   
        <mvc:interceptor>   
            <!-- 匹配的是url路径  --> 
            <mvc:mapping path="/" /> 
            <mvc:mapping path="/user/**" /> 
            <mvc:mapping path="/test/**" /> 
             
            <bean class="com.alibaba.interceptor.CommonInterceptor"></bean>   
        </mvc:interceptor> 
        <!-- 当设置多个拦截器时,先按顺序调用preHandle方法,然后逆序调用每个拦截器的postHandle和afterCompletion方法 --> 
    </mvc:interceptors> 
       
</beans>    


2.整合Mybatis

spring-dao.xml:

[html] view plain copy



 

<?xml version="1.0" encoding="UTF-8"?>   
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
       xmlns:mybatis="http://mybatis.org/schema/mybatis-spring" 
       xmlns:context="http://www.springframework.org/schema/context" 
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
       http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring.xsd 
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> 
     
    <!-- 该包下的类支持注解,表示会被当作{@code mybatis mapper}处理 配置了之后表示可以自动引入mapper类--> 
    <mybatis:scan base-package="com.alibaba.dao"/> 
    <!--引入属性文件 --> 
    <context:property-placeholder location="classpath:configuration.properties"/> 
     
    <!--数据库连接--> 
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">  
        <property name="url" value="${jdbc.url}" /> 
        <property name="username" value="${jdbc.username}"/> 
        <property name="password" value="${jdbc.password}"/> 
        <!-- 配置初始化大小、最小、最大 --> 
        <property name="initialSize"><value>1</value></property> 
        <property name="maxActive"><value>5</value></property> 
        <property name="minIdle"><value>1</value></property> 
        <!-- 配置获取连接等待超时的时间 --> 
        <property name="maxWait"><value>60000</value></property> 
        <!-- 配置监控统计拦截的filters --> 
        <property name="filters"><value>stat</value></property> 
        <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 --> 
        <property name="timeBetweenEvictionRunsMillis"><value>60000</value></property> 
        <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 --> 
        <property name="minEvictableIdleTimeMillis"><value>300000</value></property> 
        <!-- 
        <property name="validationQuery"><value>SELECT 'x'</value></property> 
        <property name="testWhileIdle"><value>true</value></property> 
        <property name="testOnBorrow"><value>false</value></property> 
        <property name="testOnReturn"><value>false</value></property> 
        <property name="poolPreparedStatements"><value>true</value></property> 
        <property name="maxOpenPreparedStatements"><value>20</value></property> 
         --> 
    </bean> 
     
    <!-- mybatis配置 --> 
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> 
        <property name="dataSource" ref="dataSource" /> 
    </bean>  
</beans>    


3.web.xml整合SpringMVC和Mybatis

[html] view plain copy



 

<?xml version="1.0" encoding="UTF-8"?> 
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> 
    <!-- 该servlet为tomcat,jetty等容器提供,将静态资源映射从/改为/static/目录,如原来访问 http://localhost/foo.css ,现在http://localhost/static/foo.css --> 
    <!-- 不拦截静态文件 --> 
    <servlet-mapping> 
        <servlet-name>default</servlet-name> 
        <url-pattern>/js/*</url-pattern> 
        <url-pattern>/css/*</url-pattern> 
        <url-pattern>/images/*</url-pattern> 
        <url-pattern>/fonts/*</url-pattern> 
    </servlet-mapping> 
     
    <!-- 配置字符集 --> 
    <filter> 
        <filter-name>encodingFilter</filter-name> 
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
        <init-param> 
            <param-name>encoding</param-name> 
            <param-value>UTF-8</param-value> 
        </init-param> 
        <init-param> 
            <param-name>forceEncoding</param-name> 
            <param-value>true</param-value> 
        </init-param> 
    </filter> 
    <filter-mapping> 
        <filter-name>encodingFilter</filter-name> 
        <url-pattern>/*</url-pattern> 
    </filter-mapping> 
     
    <!-- 初始化 DispatcherServlet时,该框架在 web应用程序WEB-INF目录中寻找一个名为[servlet-名称]-servlet.xml的文件, 
            并在那里定义相关的Beans,重写在全局中定义的任何Beans --> 
    <servlet> 
        <servlet-name>springMybatis</servlet-name> 
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
        <load-on-startup>1</load-on-startup> 
    </servlet> 
    <servlet-mapping> 
        <servlet-name>springMybatis</servlet-name> 
        <!-- 所有的的请求,都会被DispatcherServlet处理 --> 
        <url-pattern>/</url-pattern> 
    </servlet-mapping> 
      
    <context-param> 
        <param-name>contextConfigLocation</param-name> 
        <param-value>/WEB-INF/config/spring-*.xml</param-value> 
    </context-param> 
    <listener> 
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
    </listener> 
    <!-- druid web 监控 --> 
    <servlet> 
        <servlet-name>DruidStatView</servlet-name> 
        <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class> 
    </servlet> 
    <servlet-mapping> 
        <servlet-name>DruidStatView</servlet-name> 
        <url-pattern>/druid/*</url-pattern> 
    </servlet-mapping> 
     
    <error-page> 
        <error-code>404</error-code> 
        <location>/error/404.jsp</location> 
    </error-page> 
    <error-page> 
        <error-code>500</error-code> 
        <location>/error/500.jsp</location> 
    </error-page> 
</web-app> 

4.logback.xml日志配置

[html] view plain copy



 

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
 
  <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> 
    <encoder>   
        <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> 
    </encoder> 
  </appender> 
   
  <logger name="test.LogbackTest" level="TRACE"/> 
   
  <logger name="com.alibaba.controller.TestController" level="TRACE"/> 
   
  <logger name="org.springframework.web.servlet.DispatcherServlet" level="DEBUG" /> 
  <logger name="druid.sql" level="INFO" /><!-- 如果spring-config里面没有配置slf4j,就不会显示sql日志,logback只是slf4j的一个实现 --> 
  <root level="debug"> 
    <appender-ref ref="STDOUT" /> 
  </root> 
</configuration> 


5.configuration.properties配置

[html] view plain copy



 

jdbc.url=jdbc\:mysql\://localhost\:3306/druid?useUnicode\=true&characterEncoding\=UTF-8&zeroDateTimeBehavior\=convertToNull 
jdbc.username=root 
jdbc.password=123456 


6.测试搭建是否成功,后台代码

首先是登录,用了加密,可以去掉

[java] view plain copy



 

package com.alibaba.controller; 
 
 
import javax.annotation.Resource; 
import javax.servlet.http.HttpServletRequest; 
 
import org.apache.commons.codec.digest.DigestUtils; 
import org.slf4j.Logger; 
import org.slf4j.LoggerFactory; 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RequestMethod; 
import org.springframework.web.bind.annotation.RequestParam; 
 
import com.alibaba.model.User; 
import com.alibaba.service.UserService; 
import com.alibaba.util.RequestUtil; 
 
/**
* @author tfj
* 2014-7-26
*/ 
@Controller 
public class SystemController { 
    private final Logger log = LoggerFactory.getLogger(SystemController.class); 
    @Resource 
    private UserService userService; 
     
    @RequestMapping(value = "/",method = RequestMethod.GET) 
    public String home() { 
        log.info("返回首页!"); 
        return "index"; 
    } 
     
    @RequestMapping(value = "/test/hello",method = RequestMethod.GET) 
    public String testHello() { 
        log.info("执行了testHello方法!"); 
        return "testHello"; 
    } 
     
    @RequestMapping(value = "/login",method = RequestMethod.POST) 
    public String testLogin(HttpServletRequest request,@RequestParam String username, @RequestParam String password) { 
        log.info("执行了testLogin方法!"); 
        User user = userService.findUserByName(username); 
        if(user!=null){ 
            if(user.getPassword().equals(DigestUtils.md5Hex(password))){ 
                request.getSession().setAttribute("userId", user.getId());   
                request.getSession().setAttribute("user", username);   
                return "redirect:" + RequestUtil.retrieveSavedRequest();//跳转至访问页面 
            }else{ 
                log.info("密码错误");   
                request.getSession().setAttribute("message", "用户名密码错误,请重新登录"); 
                return "login";  
            } 
        }else{ 
            log.info("用户名不存在");   
            request.getSession().setAttribute("message", "用户名不存在,请重新登录"); 
            return "login";  
        } 
    } 


关于service和model就不写了,写一下mybatis的mapper类映射

[html] view plain copy



 

<?xml version="1.0" encoding="UTF-8" ?> 
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> 
<mapper namespace="com.alibaba.dao.UserMapper">     
    <select id="findUserByName" resultType="com.alibaba.model.User"> 
        select id, username , password from sysuser where username = #{username}  
    </select> 
</mapper> 



源码来源: minglisoft.cn/technology
分享到:
评论

相关推荐

    完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统(RESTful API+redis).zip

    完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统(RESTful API+redis).zip 完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统(RESTful API+redis).zip 完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统...

    Java基于Spring+SpringMVC+MyBatis实现的学生信息管理系统源码.zip

    Java基于Spring+SpringMVC+MyBatis实现的学生信息管理系统源码,SSM+Vue的学生管理系统。 Java基于Spring+SpringMVC+MyBatis实现的学生信息管理系统源码,SSM+Vue的学生管理系统。 Java基于Spring+SpringMVC+...

    基于Spring+SpringMVC+Mybatis架构的博客系统.zip

    基于Spring+SpringMVC+Mybatis架构的博客系统:博客管理、图表数据、日志分析、访问记录、图库管理、资源管理、友链通知等。良好的页面预加载,无限滚动加载,文章置顶,博主推荐等。提供 用户端+管理端 的整套系统...

    SpringMVC+Mybatis demo

    SpringMVC和MyBatis是Java Web开发中的两个核心框架,它们在构建高效、模块化的应用程序方面发挥着重要作用。SpringMVC是Spring框架的一部分,主要负责处理HTTP请求和响应,而MyBatis则是一个轻量级的持久层框架,...

    Spring+SpringMVC+Mybatis框架整合例子(SSM) 下载

    Spring、SpringMVC和Mybatis是Java开发中最常用的三大开源框架,它们的整合使用,通常被称为SSM框架。这个框架组合提供了完整的后端服务解决方案,包括依赖注入(DI)、面向切面编程(AOP)、模型-视图-控制器(MVC...

    Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统.rar

    项目描述 在上家公司自己集成的一套系统,用了两个多月的时间完成的:Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级开发系统 Springboot作为容器,使用mybatis作为持久层框架 使用官方推荐的thymeleaf做为...

    基于SpringMVC+Spring+MyBatis个人技术博客系统源码.zip

    基于SpringMVC+Spring+MyBatis个人技术博客系统源码.zip 完整代码,可运行 项目描述 基于SSM实现的一个个人博客系统,适合初学SSM和个人博客制作的同学学习。有了这个源码,直接买了阿里云或腾讯服务器,就可以部署...

    springmvc+mybatis+bootstrap框架+oracle数据库

    springmvc+mybatis+bootstrap框架+oracle数据库 1、兼容BootStrap,兼容Jquery UI。所以可以用bootstrap和jqueryui的功能。当然还有jquery了。 2、图标使用font awesome 3.2,可以使用字体图标 3、表格可以用...

    Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统

    Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理系统Springboot+Mybatis-plus+ SpringMvc+Shiro+Redis企业级报表后台管理...

    springMvc+spring+mybatis+shiro+redis+ehcache后台管理系统.zip

    本后台管理系统,采用流行的框架springMvc+spring+mybatis+shiro+redis+ehcache开发,实现了权限管理(菜单权限、数据权限),solr全文搜索引擎,activiti工作流程引擎,cas单点登陆等功能,完善的代码生成器 后期还...

    基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip

    基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip 基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip 基于SSM(Spring+SpringMVC+Mybatis)的新闻管理系统源码+数据库.zip 基于SSM...

    spring+springmvc+mybatis

    《Spring+SpringMVC+MyBatis:三位一体的Java企业级开发框架》 在Java企业级应用开发领域,Spring、SpringMVC和MyBatis是三个不可或缺的重要组件,它们共同构建了一个强大的、灵活的和可扩展的应用框架。这篇文章将...

    spring+springMVC+mybatis+quartz动态定时任务创建

    在IT行业中,构建高效、可扩展的Web应用是至关重要的,而"spring+springMVC+mybatis+quartz动态定时任务创建"就是一个常见的技术栈,用于实现这样的目标。这个组合充分利用了各组件的优势,提供了强大的后端服务支持...

    图书管理系统SpringMvc+mybatis

    《图书管理系统SpringMvc+Mybatis实现详解》 在IT领域,构建高效、稳定的软件系统是至关重要的。本项目“图书管理系统”就是这样一个实例,它利用了SpringMvc和Mybatis两大主流框架,为图书管理提供了全面的解决...

    学生管理系统(SpringMVC+Spring+Mybatis)

    【学生管理系统(SpringMVC+Spring+Mybatis)】是一个基于Java技术的Web应用程序,用于管理教育机构的学生信息。这个系统结合了三个关键的技术组件:SpringMVC作为 MVC 框架,Spring作为核心框架处理依赖注入和事务...

    Spring+SpringMVC+Mybatis框架项目整合

    在IT行业中,Spring、SpringMVC和Mybatis是三大非常重要的Java开发框架,它们的组合应用广泛用于构建企业级Web应用程序。"Spring+SpringMVC+Mybatis框架项目整合"是一个典型的后端技术栈,旨在提供高效、灵活且可...

    spring+springMVC+Mybatis demo参考

    《Spring+SpringMVC+Mybatis 整合实践详解》 在Java Web开发领域,Spring、SpringMVC和Mybatis的整合(简称SSM)是常见的应用架构模式,它为开发者提供了灵活、高效的开发环境。这个名为"spring+springMVC+Mybatis ...

    springMVC+mybatis+shiro+redis 项目整合demo

    这个"springMVC+mybatis+shiro+redis 项目整合demo"就是一个实例,展示了如何将这些技术集成到一个项目中,以实现高效的数据处理、用户认证授权和缓存管理。 首先,`SpringMVC` 是 Spring 框架的一部分,它是一个...

    Spring+SpringMVC+MyBatis SSM框架整合工程实例 完整版源码.zip

    Spring+SpringMVC+MyBatis整合工程实例 完整版源码,这个SSM框架整合工程是基于IntelliJ IDEA完成的的,工程里面配置文件均有注释,可直接拷贝使用(工程代码可导入IDEA中直接运行),可供学习设计参考。

    springmvc+mybatis+redis

    总结来说,"springmvc+mybatis+redis"的整合是现代Web开发中常见的技术栈组合,它利用SpringMVC提供灵活的控制层,MyBatis简化数据库操作,而Redis则通过高效的缓存机制优化了数据访问性能。这种组合能够帮助开发者...

Global site tag (gtag.js) - Google Analytics