IDEA Maven Springboot Simple Example

1  新建maven工程; 设置 maven配置*3 和 自动启动*1。

IDEA Maven Springboot Simple Example_第1张图片

IDEA Maven Springboot Simple Example_第2张图片

IDEA Maven Springboot Simple Example_第3张图片

2 pom.xml添加依赖

    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.RELEASE
    
    
        
            org.springframework.boot
            spring-boot-starter-web
            2.0.1.RELEASE
        
    

3 添加com包,添加启动类,controller类

IDEA Maven Springboot Simple Example_第4张图片

@SpringBootApplication
public class MySpringboot {
    public static void main(String[] args){
        SpringApplication.run(MySpringboot.class, args);
    }
}
@Controller
public class MyController {
    @RequestMapping("/hello")
    @ResponseBody
    public String hello(){
        return "hello world"; 
    }
}

4 MySpringboot启动类,点击启动按钮;浏览器访问;

localhost:8080/hello

    IDEA Maven Springboot Simple Example_第5张图片

 

ps:如果是java工程转成pom.xml, 添加支持。 

 

你可能感兴趣的:(springboot)