spring-boot 起步
程序员文章站
2024-02-15 09:57:40
...
spring boot 起步
新建工程
生成的maven工程
pom.xml文件
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
HelloWorldController
@RestController
@EnableAutoConfiguration
public class HelloWorldController {
@RequestMapping("/hello")
public String hello(){
return "hello spring boot";
}
}
项目启动
运行DemoApplication.java
中的main
方法就行:
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
访问
http://localhost:8080/hello
推荐阅读
-
1.spring boot起步之Hello World【从零开始学Spring Boot】
-
spring-boot 起步
-
详解在Spring-Boot中实现通用Auth认证的几种方式
-
[ Laravel 5.2 文档 ] 数据库 -- 起步
-
详解spring-boot集成elasticsearch及其简单应用
-
rails3的开发起步 博客分类: 脚本语言
-
rails3的开发起步 博客分类: 脚本语言
-
spring boot项目相关配置 博客分类: 编程语言 spring-boot
-
spring boot项目相关配置 博客分类: 编程语言 spring-boot
-
PHP 5.0对象模型深度探索之起步