Springmvc + jpa

[plain]  view plain copy
  1. 最近看到公司一同事在玩spring mvc,知道spring mvc已经出了很久了,空闲之余本人就整合了一下springmvc + jpa,其中jpa的实现还是Hibernate  

现在注解是大行其道。

让我们回顾一下:

1、以前的servlet一定要在web.xml里配置每一个servlet,现在只要在servlet类上面配置下注解就可以。

2、struts的每一个Action请求要在struts.xml文件配置,不过也可以通过注解来配置每一个action请求@Repository("userDao")

3、在j2ee中每一个dao 或 service的bean要在spring.xml,其实也可能用注解来配置 @Repository("userDao") || @Service("userService")

4、spring mvc  在处理请求的时候是用Controller来实现,它可以在spring配置文件里去配置请求,用注解也不在话下了@Controller@RequestMapping("/user.do")


现在就来讲解下整合步骤:

step 1:配置下web.xml文件

在web.xml配置下将请求转交给spring去处理,

 
  dispatcher
  org.springframework.web.servlet.DispatcherServlet
  1
 

 
  dispatcher
  *.do
 

step 2:在WEB-INF里配置个dispatcher-servlet.xml

//下面是声明你可以用注解来配置controller,这样我们以后用注解来配置每一个请求就好了,不用在spring配置文件去配置每一个请求

 

   
         
         
 
 

step3:请求这一步骤讲解了,接下来就配置jpa用hibernate实现怎么整合spring, 然后再junit测试下

配置Hibernate的数据库连接时,一般的工作流程都是先配置dataSource,再配置sessionFactory,然后配置事件管理,这个就不做详细的解释

下面是db.properties文件


[plain]  view plain copy
  1. jdbc.driverClass=com.mysql.jdbc.Driver  
  2. jdbc.url=jdbc:mysql://localhost:3306/mvc?useUnicode=true&characterEncoding=utf-8&autoReconnect=true  
  3. jdbc.user=root  
  4. jdbc.password=123  
  5. jdbc.dialect=org.hibernate.dialect.MySQL5Dialect  
  6. #jdbc.dialect=org.hibernate.dialect.MySQLInnoDBDialect  
  7. jdbc.initialPoolSize=2  
  8. jdbc.maxPoolSize=200  
  9. jdbc.batch_size=20  
  10. jdbc.hbm2ddl.auto=update  
  11. jdbc.query.substitutions=true 1, false 0, yes ''Y'', no ''N''  

Hibernate 在spring中的配置

[html]  view plain copy
  1. xml version="1.0" encoding="UTF-8"?>  
  2.    
  3. <beans xmlns="http://www.springframework.org/schema/beans"  
  4.     xmlns:aop="http://www.springframework.org/schema/aop"   
  5.     xmlns:p="http://www.springframework.org/schema/p"  
  6.     xmlns:tx="http://www.springframework.org/schema/tx"   
  7.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  8.     xmlns:context="http://www.springframework.org/schema/context"  
  9.     xsi:schemaLocation="http://www.springframework.org/schema/beans    
  10.     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    
  11.     http://www.springframework.org/schema/aop    
  12.     http://www.springframework.org/schema/aop/spring-aop-3.0.xsd    
  13.     http://www.springframework.org/schema/tx    
  14.     http://www.springframework.org/schema/tx/spring-tx-3.0.xsd  
  15.     http://www.springframework.org/schema/context   
  16.     http://www.springframework.org/schema/context/spring-context-3.1.xsd">  
  17.   
  18.       
  19.     <bean  
  20.         class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  21.         <property name="location" value="classpath:db.properties" />  
  22.     bean>  
  23.   
  24.       
  25.     <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" abstract="false"   
  26.         lazy-init="default" autowire="default">  
  27.         <property name="driverClassName" value="${jdbc.driverClass}"/>  
  28.         <property name="url" value="${jdbc.url}"/>  
  29.         <property name="username" value="${jdbc.user}"/>  
  30.         <property name="password" value="${jdbc.password}"/>  
  31.     bean>  
  32.       
  33.     <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">  
  34.         <property name="dataSource" ref="dataSource"/>  
  35.         <property name="hibernateProperties">  
  36.             <props>  
  37.                 <prop key="hibernate.dialect">${jdbc.dialect}prop>  
  38.                 <prop key="hibernate.hbm2ddl.auto">${jdbc.hbm2ddl.auto}prop>  
  39.                 <prop key="hibernate.jdbc.batch_size">${jdbc.batch_size}prop>  
  40.                 <prop key="hibernate.cache.use_second_level_cache">falseprop>  
  41.                 <prop key="hibernate.query.substitutions">${jdbc.query.substitutions}prop>  
  42.                 <prop key="hibernate.show_sql">falseprop>  
  43.                 <prop key="hibernate.format_sql">trueprop>  
  44.             props>  
  45.         property>  
  46.         <property name="packagesToScan">  
  47.             <list>  
  48.                 <value>com.kwok.springmvc.module.entityvalue>  
  49.             list>  
  50.         property>  
  51.     bean>  
  52.       
  53.     <context:annotation-config/>  
  54.     <context:component-scan base-package="com.kwok.springmvc" />  
  55.       
  56.     <bean id="myTxManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">  
  57.         <property name="sessionFactory" ref="sessionFactory" />  
  58.         <property name="dataSource" ref="dataSource"/>  
  59.     bean>  
  60.       
  61.     <tx:annotation-driven transaction-manager="transactionManager" />  
  62.       
  63.       
  64.     <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">  
  65.         <property name="sessionFactory" ref="sessionFactory">property>      
  66.     bean>  
  67.   
  68. beans>  

step4:接下来都是Entity,Controller,Service,Dao之间的注解来完成业务逻辑,下面是每一个层的注解啦

@Entity
@Table(name="mvc_user")


@Controller
@RequestMapping("/user.do")


@Service("userService")


@Repository("userDao")

step4:Junit4的单元测试

[java]  view plain copy
  1. package com.kwok.springmvc.junit;  
  2.   
  3.   
  4. import org.junit.Test;  
  5. import org.junit.runner.RunWith;  
  6. import org.springframework.beans.factory.annotation.Autowired;  
  7. import org.springframework.test.context.ContextConfiguration;  
  8. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;  
  9. import org.springframework.test.context.transaction.TransactionConfiguration;  
  10.   
  11.   
  12. import com.kwok.springmvc.module.entity.User;  
  13. import com.kwok.springmvc.service.UserService;  
  14.   
  15. @RunWith(SpringJUnit4ClassRunner.class)  
  16. @ContextConfiguration({"/applicationContext.xml"})  
  17. @TransactionConfiguration(transactionManager="myTxManager",defaultRollback=false)  
  18. public class ServiceJunit {  
  19.   
  20.     @Autowired  
  21.     private UserService userService;  
  22.       
  23.     @Test  
  24.     public void testInsert(){  
  25.         User user = new User();  
  26.         user.setName("wfung_kwok2");  
  27.         user.setPassword("wfung_kwok");  
  28.         user.setEmail("[email protected]");  
  29.         user.setStatus(true);  
  30.         userService.insert(user);  
  31.     }  
  32.       
  33.     @Test  
  34.     public void testGet(){  
  35.         /*User user = userService.get((long)2); 
  36.         System.out.println(user.getName()); 
  37.         List users = getUserService().findAllByCondition("1=1", null, 0, 0); 
  38.         for(User u : users){ 
  39.             System.out.println(u.getId()); 
  40.         } 
  41.         user.setPassword("!@#$%"); 
  42.         userService.update(user);*/  
  43.         Object o = userService.queryObjcet("select count(*) from User where 1=1"null);  
  44.         System.out.println((Long)o);  
  45.     }  
  46.       
  47.       
  48.     public void setUserService(UserService userService) {  
  49.         this.userService = userService;  
  50.     }  
  51.       
  52. }  

你可能感兴趣的:(SpringMVC,JPA,JPA)