IDEA 프로젝트에서 자동으로 클래스의 xml 파일, Mapper 인터페이스와 각종 조회 조건 설정을 생성합니다

6178 단어 idea
IDEA 프로젝트에서 자동으로 클래스의 xml 파일, Mapper 인터페이스와 각종 조회 조건 설정을 생성합니다
  • 먼저, 새 Maven 프로젝트
  • 새로 만든 프로젝트의pom.xml 파일에서 설정
  • pom.xml
    
    
        4.0.0
    
        com.qianfeng
        mybatisgen
        1.0
    
        
            
                org.mybatis
                mybatis
                3.4.6
            
            
                junit
                junit
                4.12
            
            
                mysql
                mysql-connector-java
                5.1.46
            
        
    
        
            KenShrio
            compile
            
                
                    org.mybatis.generator
                    mybatis-generator-maven-plugin
                    1.3.5
                    
                        
                        src/main/resources/generatorConfig.xml
                        true
                        true
                    
                    
                        
                            Generate MyBatis Artifacts
                            
                                generate
                            
                        
                    
                    
                        
                            org.mybatis.generator
                            mybatis-generator-core
                            1.3.5
                        
                    
    
                
            
    
            
                
                    src/main/java
                    
                        **/*.xml
                        **/*.*
                    
                    true
                
            
    
        
    
    
  • 그리고 generatorConfig를 구성합니다.xml 파일, 이 파일의 위치는 Resources 디렉터리에 있습니다
  • generatorConfig.xml
    
    
    
    
        
        
        
        
            
            
                
            
    
            
            
            
    
            
            
                
                
            
    
            
            
                
            
    
            
            
                
            
    
            
            
    • SqlMapConfig.xml , resources

    SqlMapConfig.xml

    
    
    
        
        
        
        
            
                
                
                
                
                    
                    
                    
                    
                
            
        
        
            
            
            
        
    
    
    
  • 마지막으로 본 프로젝트에서 오른쪽 단추를 눌러 Run Maven->clean install을 선택하면 실행
  • 좋은 웹페이지 즐겨찾기