SpringBoot是整合Spring技术栈的
一站式框架
SpringBoot是简化Spring技术栈的
快速开发脚手架
原生应用如何上云,Cloud Native
<parent>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-parentartifactId>
<version>2.7.3version>
parent>
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-webartifactId>
dependency>
@SpringBootApplication
public class MainApplication {
public static void main(String[] args) {
SpringApplication.run(MainApplication.class,args);
}
}
HelloController代码如下:
//@RestController = @ResponseBody + @Controller
@RestController
public class HelloController {
@RequestMapping("/hello")
public String test(){
return "Hello,SpringBoot2!";
}
}
扩展一下下:
在resources包下创建application.properties
server.port=8888
再次访问原地址,已访问不到。这时则需要在网址中更改我们修改后的端口即可!