spring boot框架配置

pom文件的代码如下:




  4.0.0

  com.nieyb
  nieyb
  1.0-SNAPSHOT

  nieyb
  
  http://www.example.com
  
    org.springframework.boot
    spring-boot-starter-parent
    2.0.5.RELEASE
  

  
    UTF-8
    1.7
    1.7
  

  
    
      org.springframework.boot
      spring-boot-starter-web
    
    
      mysql
      mysql-connector-java
        5.1.35
    
    
      com.alibaba
      druid
      1.1.9
    
    
      org.mybatis.spring.boot
      mybatis-spring-boot-starter
      1.3.1
    
    
      junit
      junit
      4.11
      test
    
  

  
    
      
        
        
          maven-clean-plugin
          3.1.0
        
        
        
          maven-resources-plugin
          3.0.2
        
        
          maven-compiler-plugin
          3.8.0
        
        
          maven-surefire-plugin
          2.22.1
        
        
          maven-jar-plugin
          3.0.2
        
        
          maven-install-plugin
          2.5.2
        
        
          maven-deploy-plugin
          2.8.2
        
        
          
              org.mybatis.generator
              mybatis-generator-maven-plugin
              1.3.5
              
                  
                       mysql
                       mysql-connector-java
                      5.1.35
                  
                  
                      org.mybatis.generator
                      mybatis-generator-core
                      1.3.5
                  
              
              
                  
                      Generate MyBatis Artifacts
                      package
                      
                          generate
                      
                  
              
              
                  
                  true
                  
                  true
                  
                  src/main/resources/mybatis-generator.xml
              
          
      

    
  

新建一个application.properties配置文件,代码如下:

spring.application.name=spring-boot-config
server.port=8090


#mybatis.config-location=classpath:mybatis-config.xml
#mybatis mapper文件的位置
mybatis.mapper-locations=classpath*:mapping/*.xml
#扫描pojo类的位置,在此处指明扫描实体类的包,在mapper中就可以不用写pojo类的全路径名了
mybatis.type-aliases-package=com.nieyb

jdbc.type=mysql
spring.datasource.name=nieyb
spring.datasource.url=jdbc:mysql://localhost:3306/nybtest
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

还需要建立一个mybatis-generator.xml文件,mybatis-generator.xml文件的目录要与pom文件


    
    true
    
    true
    
    src/main/resources/mybatis-generator.xml
中的标签中的目录一致。

代码如下:




    
        
            
            
        
        
        
        

        
        
            
        

        
        
            
            
            
            
        

        
        
            
        

        
        
            
        

        
        

 

你可能感兴趣的:(Javaweb,maven,springBoot)