mybatis-config.xml配置

XML 映射配置文件

mybatis中文API:点击打开链接

简单的配置案例:





	
	
	

	
	
		
	

	
	
		
			
			
				
				
				
				
			
		
	

	
	
		
		
	

注意:配置会告诉了 MyBatis 去哪里找映射文件,对于类路径的引用是用了"/"分隔的。

2.数据库连接配置:DB.properties

#mysql
username=用户名
password=密码
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/数据库名


你可能感兴趣的:(Mybatis)