MyBatis 核心配置文件和pom.xml

注意!?useSSL=false&useUnicode=true&serverTimezone=UTC&characterEncoding=UTF8

从 XML 中构建 SqlSessionFactory每个 SqlSessionFactory 实例只能选择一种环境。

MyBatis默认的事务管理器是JDBC, 连接池是POOLED





    
        
        
        
    
    
        
    

    
    
        
            
            
                
                
                
                
            
        
    




​
    
        
    

    
    
        
    

===========================
写在pom.xml
===========================

        
            org.junit.jupiter
            junit-jupiter
            RELEASE
            test
        
        
            junit
            junit
            4.13.2
            compile
        
        
        
            log4j
            log4j
            1.2.17
        
        
            org.slf4j
            slf4j-simple
            1.7.25
            compile
        
        
        
            org.projectlombok
            lombok
            1.18.22
        
        
        
            org.mybatis.caches
            mybatis-ehcache
            1.1.0
        
		
    
        
            mysql
            mysql-connector-java
            8.0.11
        
        
        
            org.mybatis
            mybatis
            3.5.9
        
        
            junit
            junit
            4.12
            test
        
        
            org.testng
            testng
            RELEASE
            test
        
    
    
    
        
            
                src/main/resources
                
                    **/*.properties
                    **/*.xml
                
                false
            
            
                src/main/java
                
                    **/*.properties
                    **/*.xml
                
                false
            
        
    

        上面有相关的一系列依赖导入,可以解决很多MyBatis带来的报错问题

本人经历过,所以深有体会。

        两个不常见的问题

  • 问题:arget\surefire-reports for the individual test results

  •     org.apache.maven.plugins
        maven-surefire-plugin
       
           true
       

  • 问题: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".

  •     org.slf4j
        slf4j-simple
        1.7.25
        compile
     

你可能感兴趣的:(SSM,java,maven,jar)