微服务 第一章:Idea快速创建SpringBoot项目

点击新建项目:

微服务 第一章:Idea快速创建SpringBoot项目_第1张图片

点击next:

微服务 第一章:Idea快速创建SpringBoot项目_第2张图片

一直next ,直到创建成功。

创建完成后的项目结构如下:

微服务 第一章:Idea快速创建SpringBoot项目_第3张图片

 

添加maven:

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

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

    
    
        
            org.springframework.boot
            spring-boot-maven-plugin
        
    

  

新建个类:

LessonOneApplication
@SpringBootApplication
public class LessonOneApplication {
	public static void main(String[] args) {
		SpringApplication.run(LessonOneApplication.class, args);
	}
}
@RestController
@RequestMapping
public class HelloWordController {
    @RequestMapping(value = "/index",method = RequestMethod.GET)
    public String index(){
        return "HelloWord";
    }
}

  

运行 LessonOneApplication类的主函数方法:
微服务 第一章:Idea快速创建SpringBoot项目_第4张图片

在浏览器上测试:
微服务 第一章:Idea快速创建SpringBoot项目_第5张图片

项目创建成功。

 

解析

需要引入的jar包介绍:

spring-boot-starter:核心模块,包括自动配置支持、日志和YAML
spring-boot-starter-test:测试模块,包括JUnit、Hamcrest、Mockito
引入Web模块,需添加spring-boot-starter-web模块

 

 

转载于:https://www.cnblogs.com/yaohuiqin/p/9360005.html

你可能感兴趣的:(微服务 第一章:Idea快速创建SpringBoot项目)