`
HotStrong
  • 浏览: 509141 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

MyBatis 2章 MyBatis与Spring整合

阅读更多

 

MyBatis 1章 入门(使用MyBatis完成CRUD)

MyBatis 3章 MyBatis Spring Struts2 整合应用

 

 

MyBatis 2章 MyBatis与Spring整合

 

1、技术目标

 

  • 为项目添加Spring框架
  • 使用Spring在业务逻辑层对DAO完成依赖注入
  • 使用Spring在业务逻辑层进行事务处理

 

2、什么是Spring框架?

Spring 是一个开源框架,是为了解决企业应用程序开发复杂性而创建的。

框架的主要优势之一就是其分层架构,分层架构允许您选择使用哪一个组件,

同时为 J2EE 应用程序开发提供集成的框架

 

Spring框架由如下7个模块构成:

 

 

模块说明:

组成 Spring 框架的每个模块(或组件)都可以单独存在,或者与其他一个或多个模块联合实现。每个模块的功能如下:

 

  • 核心容器:核心容器提供 Spring 框架的基本功能。核心容器的主要组件是 BeanFactory,它是工厂模式的实现。BeanFactory 使用控制反转 (IOC) 模式将应用程序的配置和依赖性规范与实际的应用程序代码分开

  • Spring 上下文:Spring 上下文是一个配置文件,向 Spring 框架提供上下文信息。Spring 上下文包括企业服务,例如 JNDI、EJB、电子邮件、国际化、校验和调度功能

  • Spring AOP:通过配置管理特性,Spring AOP 模块直接将面向方面的编程功能集成到了 Spring 框架中。所以,可以很容易地使 Spring 框架管理的任何对象支持 AOP。Spring AOP 模块为基于 Spring 的应用程序中的对象提供了事务管理服务。通过使用 Spring AOP,不用依赖 EJB 组件,就可以将声明性事务管理集成到应用程序中

  • Spring DAO:JDBC DAO 抽象层提供了有意义的异常层次结构,可用该结构来管理异常处理和不同数据库供应商抛出的错误消息。异常层次结构简化了错误处理,并且极大地降低了需要编写的异常代码数量(例如打开和关闭连接)。Spring DAO 的面向 JDBC 的异常遵从通用的 DAO 异常层次结构

  • Spring ORM:Spring 框架插入了若干个 ORM 框架,从而提供了 ORM 的对象关系工具,其中包括 JDO、Hibernate 和 iBatis SQL Map。所有这些都遵从 Spring 的通用事务和 DAO 异常层次结构

  • Spring Web 模块:Web 上下文模块建立在应用程序上下文模块之上,为基于 Web 的应用程序提供了上下文。所以,Spring 框架支持与 Jakarta Struts 的集成。Web 模块还简化了处理多部分请求以及将请求参数绑定到域对象的工作

  • Spring MVC 框架:MVC 框架是一个全功能的构建 Web 应用程序的 MVC 实现。通过策略接口,MVC 框架变成为高度可配置的,MVC 容纳了大量视图技术,其中包括 JSP、Velocity、Tiles、iText 和 POI

 

注意:关于Spring其他方面的应用细节不在本文讨论范围

 

3、使用准备

 

3.1)在项目中导入如下jar包(本文已提供下载):

 

aopalliance-1.0.jar

c3p0-0.9.1.2.jar

com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar

commons-logging-1.1.1.jar

mybatis-spring-1.0.0.jar

org.springframework.aop-3.0.5.RELEASE.jar

org.springframework.asm-3.0.5.RELEASE.jar

org.springframework.beans-3.0.5.RELEASE.jar

org.springframework.context-3.0.5.RELEASE.jar

org.springframework.context.support-3.0.5.RELEASE.jar

org.springframework.core-3.0.5.RELEASE.jar

org.springframework.expression-3.0.5.RELEASE.jar

org.springframework.jdbc-3.0.5.RELEASE.jar

org.springframework.orm-3.0.5.RELEASE.jar

org.springframework.transaction-3.0.5.RELEASE.jar

org.springframework.web-3.0.5.RELEASE.jar

org.springframework.web.servlet-3.0.5.RELEASE.jar

 

3.2)创建如下包,放置业务逻辑代码:

 

com.xxx.service

com.xxx.service.impl

 

3.3)在src(类路径)下创建属性文件jdbc.properties,该属性文件用于保存

MySql连接参数以及C3P0连接池的相关配置,

内容如下:

#########MySql##############

jdbc.url=jdbc:mysql://localhost:3306/test

jdbc.driverClassName=com.mysql.jdbc.Driver

jdbc.username=root

jdbc.password=123456

 

# Time to wait for an open connection before timing out

# (in milliseconds)

cpool.checkoutTimeout=5000

 

# Connection pool size

cpool.minPoolSize=5

cpool.maxPoolSize=20

 

# How long to keep unused connections around(in seconds)

# Note: MySQL times out idle connections after 8 hours(28,800 seconds)

# so ensure this value is below MySQL idle timeout

cpool.maxIdleTime=3600

 

# How long to hang on to excess unused connections after traffic spike

# (in seconds)

cpool.maxIdleTimeExcessConnections=1800

 

# Acquiring new connections is slow, so eagerly retrieve extra connections

# when current pool size is reached

cpool.acquireIncrement=5

 

3.4)修改src(类路径)下的MyBatis配置文件mybatis-config.xml只保留Aliases配置,如下:

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
	    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
	    "http://mybatis.org/dtd/mybatis-3-config.dtd">
	
<configuration>
	<settings>
		<!-- changes from the defaults -->
		<setting name="lazyLoadingEnabled" value="false" />
	</settings>
	<typeAliases>
		<typeAlias alias="Film" type="com.xxx.pojo.Film"/>
	</typeAliases>
</configuration>

 

 

 

3.5)在src下创建Spring配置文件applicationContext-mybatis.xml,该配置文件包含Spring整合MyBatis的相关配置,如下:

<?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:aop="http://www.springframework.org/schema/aop"
			xmlns:p="http://www.springframework.org/schema/p"
			xmlns:tx="http://www.springframework.org/schema/tx"
			xmlns:context="http://www.springframework.org/schema/context"
			xsi:schemaLocation="
				http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
				http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
				http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
		
		<!-- Properties文件读取配置,base的properties -->
		<context:property-placeholder location="classpath:jdbc.properties"/>
		
		<!-- JNDI获取数据源(使用c3p0连接池) -->
		<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close" dependency-check="none">
	        		<property name="driverClass" value="${jdbc.driverClassName}" />
	        		<property name="jdbcUrl" value="${jdbc.url}" />
	        		<property name="user" value="${jdbc.username}" />
	        		<property name="password" value="${jdbc.password}" />
	        		<property name="autoCommitOnClose" value="true"/>
	        		<property name="checkoutTimeout" value="${cpool.checkoutTimeout}"/>
	        		<property name="initialPoolSize" value="${cpool.minPoolSize}"/>
	        		<property name="minPoolSize" value="${cpool.minPoolSize}"/>
	        		<property name="maxPoolSize" value="${cpool.maxPoolSize}"/>
	        		<property name="maxIdleTime" value="${cpool.maxIdleTime}"/>
	        		<property name="acquireIncrement" value="${cpool.acquireIncrement}"/>
	        		<property name="maxIdleTimeExcessConnections" value="${cpool.maxIdleTimeExcessConnections}"/>
	    	</bean>
		 
		
		<!-- (事务管理)transaction manager, use JtaTransactionManager for global tx -->
	    	<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
	        		<property name="dataSource" ref="dataSource" />
	    	</bean>

	    	<!-- (Annotation方式配置services)enable component scanning (beware that this does not enable mapper scanning!) -->    
	    	<context:component-scan base-package="com.xxx.service" />

	    	<!-- enable autowire -->
	    	<context:annotation-config />

	    	<!-- enable transaction demarcation with annotations -->
	    	<tx:annotation-driven />

	    <!-- define the SqlSessionFactory, notice that configLocation is not needed when you use MapperFactoryBean -->
	    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
	        <property name="dataSource" ref="dataSource" />
	        <property name="configLocation" value="classpath:mybatis-config.xml" />
	    </bean>

	    <!-- scan for mappers and let them be autowired -->
	    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
	    	<!-- Mapper接口所在包名,Spring会自动查找其下的Mapper -->
	        <property name="basePackage" value="com.xxx.dao" />
	    </bean>
	</beans>

 

 

4、创建业务逻辑接口、实现类

 

4.1)com.xxx.service包下创建业务逻辑接口FilmService,代码如下:

 

package com.xxx.service;  
  
import java.util.List;  
import org.springframework.transaction.annotation.Transactional;  
import com.xxx.pojo.Film;  
 
/** 
* 影片信息业务逻辑接口 
* @author HotStrong 
* 
*/  
public interface FilmService {  
     
    /** 
     * 添加一部影片 
     * @param film 
     */  
    @Transactional  
    public void insertFilm(Film film);  
      
    /** 
     * 修改一部影片的信息 
     * @param film 
     */  
    @Transactional  
    public void updateFilm(Film film);  
      
    /** 
     * 通过影片编号删除一部影片 
     * @param filmId 
     */  
    @Transactional  
    public void deleteFilm(int filmId);  
      
    /** 
     * 通过影片编号获取一部影片 
     * @param filmId 
     * @return 
     */  
    public Film getFilmById(int filmId);  
     
    /** 
     * 获取所有的影片 
     * @return 
     */  
    public List<Film> getAllFilm();  
      
}

  

 

4.2)com.xxx.service.impl包下创建业务逻辑接口实现类FilmServiceImpl,代码如下:

 

package com.xxx.service;  
  
import java.util.List;  
import org.springframework.beans.factory.annotation.Autowired;  
import com.xxx.dao.temp.FilmMapper;  
import com.xxx.pojo.Film;  
 
/** 
 * 影片信息业务逻辑接口实现类 
 * @author HotStrong 
 * 
 */  
public class FilmServiceImpl implements FilmService {  
      
    //注入影片Mapper  
    @Autowired  
    private FilmMapper mapper;  
      
    public void insertFilm(Film film) {  
         
        mapper.insertFilm(film);                  
    }  
  
    public void deleteFilm(int filmId) {  
          
        mapper.deleteFilm(filmId);  
    }  
 
    public void updateFilm(Film film) {  
          
        mapper.updateFilm(film);  
    }  
      
    public Film getFilmById(int filmId) {  
          
        return mapper.getFilmById(filmId);  
    }  
     
    public List<Film> getAllFilm() {  
          
        return mapper.getAllFilm();  
          
    }  
  
} 

 

 
5、src(类路径)下创建Spring配置文件applicationContext-services.xml,加入业务逻辑对象的配置

 

<?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:aop="http://www.springframework.org/schema/aop"
		xmlns:tx="http://www.springframework.org/schema/tx"
		xsi:schemaLocation="
			http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
			http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
			http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
		
		<!-- 电影业务逻辑对象 -->
		<bean id="filmService" class="com.xxx.service.FilmServiceImpl"></bean>		
		
</beans>

 

 

6、com.xxx.test包下创建测试类TestSpringMyBatis,对业务逻辑对象进行测试,代码如下:

 

package com.xxx.test;  

import java.util.List;  
import junit.framework.TestCase;  
import org.springframework.context.ApplicationContext;  
import org.springframework.context.support.ClassPathXmlApplicationContext;  
import com.xxx.pojo.Film;  
import com.xxx.service.FilmService;  
 
/** 
 * 测试Spring整合MyBatis 
 * @author HotStrong 
 * 
 */  
public class TestSpringMyBatis extends TestCase {  
      
    //Spring整合MyBatis相关配置文件  
    private String[] configFiles = {"applicationContext-mybatis.xml", "applicationContext-services.xml"};  
    //创建Spring应用上下文  
    private ApplicationContext context =  new ClassPathXmlApplicationContext(configFiles);  
      
    public void testFilm(){  
          
        //获取影片业务逻辑对象  
        FilmService filmService = (FilmService)context.getBean("filmService");  
          
        try {  
              
            /*以下为影片业务逻辑操作*/  
              
            //1、添加一部影片  
            Film film = new Film();  
            film.setFname("功夫熊猫2");//设置片名  
            //filmService.insertFilm(film);//添加影片  
              
            //2、修改影片信息  
            //先获取待修改的影片信息  
            film = filmService.getFilmById(12);//12为功夫熊猫2的影片编号  
            //修改影片名称  
            film.setFname("功夫熊猫3");  
            //修改操作  
            filmService.updateFilm(film);  
              
            //3、删除"功夫熊猫3",其编号为12  
            filmService.deleteFilm(12);  
              
            List<Film> filmList = filmService.getAllFilm();  
              
            //4、显示所有电影信息  
            for(Film filmObj : filmList){  
                  
                System.out.println("电影ID:" + filmObj.getId() + " 电影名:" + filmObj.getFname());  
            }  
              
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
         
    }  
}  

  

 

MyBatis 1章 入门(使用MyBatis完成CRUD)

MyBatis 3章 MyBatis Spring Struts2 整合应用

 

 

15
6
分享到:
评论
8 楼 kewei89767396 2012-12-05  
junit.framework.AssertionFailedError: Exception in constructor: test (org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' defined in class path resource [applicationContext-mybatis.xml]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/apache/ibatis/session/SqlSessionFactory
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:527)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:291)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:288)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1079)
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:651)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:407)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139)
at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:93)
at com.xxx.test.TestSpringMyBatis.<init>(TestSpringMyBatis.java:23)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at junit.framework.TestSuite.createTest(TestSuite.java:61)
at junit.framework.TestSuite.addTestMethod(TestSuite.java:283)
at junit.framework.TestSuite.<init>(TestSuite.java:146)
at org.junit.internal.runners.JUnit38ClassRunner.<init>(JUnit38ClassRunner.java:69)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at org.junit.internal.requests.ClassRequest.buildRunner(ClassRequest.java:33)
at org.junit.internal.requests.ClassRequest.getRunner(ClassRequest.java:28)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.<init>(JUnit4TestReference.java:29)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestClassReference.<init>(JUnit4TestClassReference.java:25)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.createTest(JUnit4TestLoader.java:40)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestLoader.loadTests(JUnit4TestLoader.java:30)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:452)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
Caused by: java.lang.NoClassDefFoundError: org/apache/ibatis/session/SqlSessionFactory
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
at java.lang.Class.privateGetPublicMethods(Unknown Source)
at java.lang.Class.getMethods(Unknown Source)
at java.beans.Introspector.getPublicDeclaredMethods(Unknown Source)
at java.beans.Introspector.getTargetMethodInfo(Unknown Source)
at java.beans.Introspector.getBeanInfo(Unknown Source)
at java.beans.Introspector.getBeanInfo(Unknown Source)
at org.springframework.beans.CachedIntrospectionResults.<init>(CachedIntrospectionResults.java:224)
at org.springframework.beans.CachedIntrospectionResults.forClass(CachedIntrospectionResults.java:149)
at org.springframework.beans.BeanWrapperImpl.getCachedIntrospectionResults(BeanWrapperImpl.java:305)
at org.springframework.beans.BeanWrapperImpl.getPropertyDescriptorInternal(BeanWrapperImpl.java:335)
at org.springframework.beans.BeanWrapperImpl.isWritableProperty(BeanWrapperImpl.java:407)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1327)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1086)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:517)
... 33 more
Caused by: java.lang.ClassNotFoundException: org.apache.ibatis.session.SqlSessionFactory
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 49 more
)
at junit.framework.Assert.fail(Assert.java:47)
at junit.framework.TestSuite$1.runTest(TestSuite.java:97)
at junit.framework.TestCase.runBare(TestCase.java:134)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:124)
at junit.framework.TestSuite.runTest(TestSuite.java:232)
at junit.framework.TestSuite.run(TestSuite.java:227)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:81)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:46)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

7 楼 wxh199177 2012-06-05  
jar包冲突吧,我把自己项目的jar包换成这里下载的jar包就OK了
wsh675783578 写道
2012-05-26 18:31:34,134 INFO  [main] ClassPathXmlApplicationContext.prepareRefresh(456) | Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@186db54: startup date [Sat May 26 18:31:34 CST 2012]; root of context hierarchy
2012-05-26 18:31:34,196 INFO  [main] XmlBeanDefinitionReader.loadBeanDefinitions(315) | Loading XML bean definitions from class path resource [applicationContext-mybatis.xml]
2012-05-26 18:31:34,399 INFO  [main] XmlBeanDefinitionReader.loadBeanDefinitions(315) | Loading XML bean definitions from class path resource [applicationContext-services.xml]
2012-05-26 18:31:34,508 INFO  [main] DefaultListableBeanFactory.destroySingletons(422) | Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1a5f739: defining beans [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,dataSource,transactionManager,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,filmService]; root of factory hierarchy

6 楼 wsh675783578 2012-05-26  
2012-05-26 18:31:34,134 INFO  [main] ClassPathXmlApplicationContext.prepareRefresh(456) | Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@186db54: startup date [Sat May 26 18:31:34 CST 2012]; root of context hierarchy
2012-05-26 18:31:34,196 INFO  [main] XmlBeanDefinitionReader.loadBeanDefinitions(315) | Loading XML bean definitions from class path resource [applicationContext-mybatis.xml]
2012-05-26 18:31:34,399 INFO  [main] XmlBeanDefinitionReader.loadBeanDefinitions(315) | Loading XML bean definitions from class path resource [applicationContext-services.xml]
2012-05-26 18:31:34,508 INFO  [main] DefaultListableBeanFactory.destroySingletons(422) | Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@1a5f739: defining beans [org.springframework.beans.factory.config.PropertyPlaceholderConfigurer#0,dataSource,transactionManager,org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.transaction.annotation.AnnotationTransactionAttributeSource#0,org.springframework.transaction.interceptor.TransactionInterceptor#0,org.springframework.transaction.config.internalTransactionAdvisor,sqlSessionFactory,org.mybatis.spring.mapper.MapperScannerConfigurer#0,filmService]; root of factory hierarchy
5 楼 wsh675783578 2012-05-26  
为什么打印不出来啊???????????????
4 楼 quanwsx 2012-05-23  
junit.framework.AssertionFailedError: Exception in constructor: testFilm (org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.mybatis.spring.mapper.MapperScannerConfigurer#0' defined in class path resource [applicationContext-mybatis.xml]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/apache/ibatis/session/SqlSessionFactory


兄弟怎么不sqlsessionfactiory ???
3 楼 carefx 2012-02-08  
在bean sqlSessionFactory中添加一个property:
                <property name="mapperLocations">
                    <list>
                        <value>classpath*:com/xxx/dao/*.xml</value>
                    </list>
                </property>
2 楼 carefx 2012-02-08  
spring-mybatis配置文件applicationContext-mybatis.xml中要指明sqlmap文件的位置,不然找不到。
在<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:mybatis-config.xml" />
</bean>中添加一个property:
                <property name="mapperLocations">
                    <list>
                        <value>classpath*:com/xxx/dao/*.xml</value>
                    </list>
                </property>
1 楼 carefx 2012-02-08  
spring-mybatis配置文件applicationContext-mybatis.xml中要指明sqlmap文件的位置,不然找不到。

相关推荐

    mybatis与spring整合的全部jar包

    以上就是关于“mybatis与spring整合的全部jar包”的详细知识点,这些组件共同构建了一个灵活且易于维护的Java Web应用程序。通过理解这些概念和技术,开发者可以更好地理解和使用SSM框架来开发复杂的企业级应用。

    spring_mybatis 整合jar包

    在与Spring整合后,可以通过Spring的ApplicationContext来管理SqlSessionFactory和Mapper接口,实现事务的统一管理和DAO的自动注入。 在压缩包子文件的文件名称列表中,虽然只列出了"lib",但我们可以推测,这个...

    Mybatis与Spring整合所需的jar包

    mybatis与spring整合时所依赖的jar包,包括: 1.Mybatis所需的jar包括: ant-1.9.6.jar ant-launcher-1.9.6.jar asm-5.2.jar cglib-3.2.5.jar commons-logging-1.2.jar javassist-3.22.0-CR2.jar log4j-...

    Java项目框架-SpringMVC+Spring+Mybatis集成开发环境

    SpringMVC+Spring+Mybatis集成开发环境SpringMVC+Spring+Mybatis集成开发环境SpringMVC+Spring+Mybatis集成开发环境SpringMVC+Spring+Mybatis集成开发环境SpringMVC+Spring+Mybatis集成开发环境SpringMVC+Spring+...

    mybatis与spring整合全部jar包

    这个“mybatis与spring整合全部jar包”包含了这三个框架整合所需的所有依赖库,使得开发者可以快速搭建SSM项目。 首先,让我们深入了解一下这三个组件: 1. **Spring**:Spring 是一个全面的Java企业级应用开发...

    Spring-SpringMVC-Mybatis整合所有jar包

    5. **Spring与Mybatis的整合**:通过Mybatis的SqlSessionFactoryBean和SqlSessionTemplate,将Mybatis的SqlSession管理纳入Spring的管理,实现事务的一致性。 6. **测试与运行**:通过单元测试确保各个组件正常工作...

    mybatis-3.3.0,mybatis-spring-1.2.3.jar

    描述中提到的"mybatis-spring-1.2.3.jar"是MyBatis与Spring框架集成的库,版本为1.2.3。这个库使得在Spring应用中使用MyBatis变得更加方便。它提供了Spring Bean的自动配置,允许开发者通过@Autowired注解来注入...

    mybatis3+spring+springMVC4整合jar包.rar

    标题 "mybatis3+spring+springMVC4整合jar包.rar" 描述的是一个整合了MyBatis 3、Spring 4 和 Spring MVC 4 的项目压缩包。这个压缩包通常用于快速搭建一个基于Java的Web开发环境,尤其是用于处理数据库操作和前端...

    mybatis-spring 整合jar包

    mybatis-spring 整合jar包,Spring和MyBatis环境整合mybatis-spring-1.1.1

    spring整合Mybatis

    本文将深入探讨如何进行"Spring整合Mybatis"的基础搭建,以及涉及到的相关技术点。 首先,Spring框架是一个开源的应用程序框架,它简化了Java EE应用的开发,提供了依赖注入(DI)和面向切面编程(AOP)等功能。在...

    Spring-Mybatis整合

    将两者整合,形成的SSM(Spring、SpringMVC、Mybatis)架构是Java Web开发中的常见选择。现在我们来详细讨论一下Spring-Mybatis整合的相关知识点。 1. **Spring 概述**: Spring 是一个全面的企业级应用框架,它...

    Spring整合Mybatis与SpringBoot整合Mybatis原理分析

    **Spring整合Mybatis原理分析** 在Java Web开发中,Spring框架以其强大的依赖注入和面向切面编程能力,成为了事实上的核心框架。Mybatis则是一个轻量级的持久层框架,它简化了数据库操作,提供了直观的SQL映射。将...

    MyBatis-3.2.2和mybatis-spring-1.2.1架包

    而"mybatis-spring-1.2.1"是MyBatis与Spring框架的集成包,使得MyBatis可以无缝地融入到Spring的IoC(Inversion of Control,控制反转)和AOP(Aspect-Oriented Programming,面向切面编程)环境中,主要功能包括: ...

    mybatis与spring整合依赖包集

    本"mybatis与spring整合依赖包集"包含了一系列必要的库,使得开发者能够轻松地搭建集成环境,进行高效的数据访问。 首先,MyBatis是一个优秀的持久层框架,它简化了SQL操作,将SQL语句直接映射到Java方法,避免了...

    mybatis-3.2.7 包含spring整合包

    `mybatis-spring-1.1.1.jar` 是 MyBatis 与 Spring 框架的整合包,它使得 MyBatis 能够无缝地融入到 Spring 的 IoC 容器中,提供了以下功能: 1. 事务管理:Spring 提供的声明式事务管理可以应用于 MyBatis 的数据...

    spring3.2.6struts2.3.15MyBatis3整合DEMO

    《Spring 3.2.6、Struts 2.3.15与MyBatis 3整合实战详解》 在Java Web开发领域,Spring、Struts和MyBatis是三大主流框架,它们各自承担着不同的职责,共同构建了一个强大的企业级应用开发环境。本DEMO以Spring ...

    mybatis和spring的整合包(完整版).rar

    Spring还支持数据访问抽象,可以方便地与MyBatis集成。 MyBatis与Spring的整合主要有两种方式:一是基于Spring的Bean工厂管理SqlSessionFactory,二是使用MyBatis-Spring库。在第一种方式中,Spring管理...

    MyBatis整合Spring中间件jar包 mybatis-spring-1.3.0.jar

    MyBatis-Spring是MyBatis与Spring框架的整合组件,其主要目的是简化在Spring应用中集成MyBatis的过程,使两者能够无缝协作。mybatis-spring-1.3.0.jar是这个中间件的特定版本,包含了实现这种集成所需的所有类和资源...

    struts2+spring+mybatis+easyui的实现

    总的来说,"struts2+spring+mybatis+easyui"的实现是一个标准的Java Web项目结构,它利用Maven进行构建管理,通过整合四个组件,实现了后端的业务逻辑处理、数据访问和前端的用户界面展示。这种架构在实际开发中具有...

Global site tag (gtag.js) - Google Analytics