(一)SpringBoot基础项目搭建

1.通过maven创建springboot项目

maven --> org.apache.maven.archetypes:maven-archetype-quickstart

若不使用springboot,则选择maven-archetype-webapp,以war包形式部署。

2. 引入springboot依赖包


        org.springframework.boot
        spring-boot-starter-parent
        2.2.2.RELEASE
         


            org.springframework.boot
            spring-boot-starter-web

3.测试简单运行

@EnableAutoConfiguration   //SpringBoot自动化配置
public class App
{
    @RequestMapping("/")  
    public String home(){
        return "Hello World!";
    }
    public static void main( String[] args )
    {
        System.out.println( "Hello World!" );
        SpringApplication.run(App.class,args);   //启动SpringBoot
    }
}

4.Mybatis 接入SpringBoot

引入依赖

        
            mysql
            mysql-connector-java
            8.0.13
        
        
            com.alibaba
            druid
            1.1.3
        
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            1.3.1
        

添加插件


                    org.mybatis.generator
                    mybatis-generator-maven-plugin
                    1.3.5
                    
                       
                        true
                        
                        true
                        
                        
                            src/main/resources/mybatisConfig-generator.xml
                        
                    
                    
                        
                            mybatis generator
                            package
                            
                                generate
                            
                        
                    
                    
                        
                            mysql
                            mysql-connector-java
                            8.0.13
                        
                        
                            org.mybatis.generator
                            mybatis-generator-core
                            1.3.5
                        
                    
                

创建mybatisConfig-generator.xml文件




    
        
        
        
        
            
            
        
        
        
            
        
        
        
        
            
        
        
        

自动生成数据库Mybatis映射文件


你可能感兴趣的:((一)SpringBoot基础项目搭建)