Mybatis 的mybatis-config.xml 配置中读取properties文件

Mybatis配置文件中直接加载设置好的资源文件   例如:

对于mybatis-config.xml的核心配置中,如果存在需要频繁改动的数据内容,可以提取到properties中。

 

#jdbc.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/example?useUnicode=true&characterEncpding=utf8
jdbc.username=root
jdbc.password=123456

然后修改mybatis-config.xml成动态获取资源属性





	
    

    
        
            
            
                
                
                
                
                
            
        
    

    
        
    

 

 

你可能感兴趣的:(Mybatis,问题与方法,xml,java,开发语言)