SpringBoot2-01
2021-03-01 22:31
标签:handle tap app dep src 方法 toc public 主程 1.使用idea新建一个名为boot的Maven工程。 3.点击boot目录下的pom.xml文件,引入以下依赖: 4.手动创建主程序类,类名默认为MainApplication。 5.编写业务 6.测试:直接运行main方法 SpringBoot2-01 标签:handle tap app dep src 方法 toc public 主程 原文地址:https://www.cnblogs.com/daydayupup/p/14423956.htmlSpring Boot2入门
2.点击右下角的“Enable Auto-Import”选项,idea将会自动下载相关的依赖包。package com.per.boot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*使用 @SpringBootApplication修饰该类表示这是一个SpringBoot应用
*/
@SpringBootApplication
public class MainApplication {
public static void main(String[] args) {
SpringApplication.run(MainApplication.class,args);
}
}
package com.per.boot.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloWorld {
@RequestMapping("/hello")
public String handle(){
return "Hello, Spring Boot2!";
}
}
上一篇:JavaScript基础
下一篇:python安装阿里云SDK