Spring集成Hibernate框架的两种方式


 
		  
		 
	

	
	
	
	
		
			classpath:jdbc.properties
		
		
		
		
		
		
		
		
			
	
		
		
			
				
					org.hibernate.dialect.Oracle9Dialect
				
				
					jdbc:oracle:thin:@localhost:1521:orcl
				
				
					true
				
				
					true
				
			
		
	

		
			
				entity/Emp.hbm.xml
				entity/Dept.hbm.xml
			
		



		classpath:entity
		
	

配置数据源第二种方法的外部jabc.properties文件

jdbc.properties

driverClassName=oracle.jdbc.OracleDriver
url=jdbc:oracle:thin:@localhost:1521:orcl
username=scott
password=123456

Spring集成Hibernate框架的两种方式_第1张图片

你可能感兴趣的:(Spring集成Hibernate框架的两种方式)