创建一个springboot工程的步骤

首先new一个工程,选择maven,名字命名为com.bee ,artifactId 为bee,

二、创建new 出每一个module,名字为bee-web,bee-dao,bee-service,bee-client

三、配置maven 文件,修改setting路径,设置为国内下载的地址,

四、删除根目录下的src文件夹

五、主pom.xml配置把springboot的包引进来,并且有个springboot 版本,这时候在依赖上面配置一个版本

  
        UTF-8
        UTF-8
        1.5.6.RELEASE
        1.8
    


    
        
            
            org.springframework.boot
            spring-boot-dependencies
            ${srpingboot.version}
            pom
            import
        
        
            mysql
            mysql-connector-java
            5.1.38
        
    

六、web 的pom的依赖添加,依赖service里的包,freemarker模板包、热部署包、和一个build的插件

 
        
            com.bee
            bee-service
            1.0-SNAPSHOT
        
        
            org.springframework.boot
            spring-boot-starter-freemarker
        
        
        
            org.springframework.boot
            spring-boot-devtools
            true
            true
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                    true
                
                
                    
                        
                            repackage
                        
                    
                
            
        
    

七、service的pom配置,因为service模块重要用到httprequest 这些参数,所以要引入starter-web包、要依赖dao层的包


    
        com.bee
        bee-dao
        1.0-SNAPSHOT
    
    
        org.springframework.boot
        spring-boot-starter-web
    

八、dao的pom配置,这块要引入mysql-connector-java包,驱动包、mybatis包、pagehelper分页包


    
        mysql
        mysql-connector-java
    
    
        com.alibaba
        druid-spring-boot-starter
        1.1.9
    
    
        org.mybatis.spring.boot
        mybatis-spring-boot-starter
        1.3.0
    
    
        com.github.pagehelper
        pagehelper-spring-boot-starter
        1.2.2
    

九、在web层下的java目录下新建一个包com.compass包,新建一个启动类SpringbootApplication,MainController

@SpringBootApplication
public class SpringbootApplication {
    public static void main(String[] args){
        SpringApplication.run(SpringbootApplication.class,args);
    }
}
@Controller
public class MainController {
    @RequestMapping("/")
    public ModelAndView index(){
        ModelAndView modelAndView = new ModelAndView();
        modelAndView.setViewName("index");
        return modelAndView;
    }
}

十、在web层下的resources目录下新建一个配置 application.properties和一个模板包templates ,并且在templates下新建一个模板index.ftl

server.port=8085
spring.freemarker.cache=false
spring.freemarker.charset=UTF-8
spring.freemarker.content-type=text/html
spring.freemarker.suffix=.ftl
spring.freemarker.template-loader-path=classpath:/templates
spring.freemarker.request-context-attribute=request

#配置数据库连接
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/XXXXXX?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true
spring.datasource.username=root
spring.datasource.password=XXXXX
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#配置mybatis
mybatis.mapper-locations=classpath:/mappers/*Mapper.xml
mybatis.type-aliases-package=com.XXXXX.XXXXX.XXXXX
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
你好springboot

十一、最后启动功能,页面访问127.0.0.1:8085

你可能感兴趣的:(创建一个springboot工程的步骤)