Hello SpringBoot(搭建springboot)

搭建SpringBoot

  1. 官网工具搭建
  2. idea搭建

springboot

官网:https://spring.io/projects/spring-boot#overview
微服务论文
英文 :https://martinfowler.com/articles/microservices.html
中文:https://www.cnblogs.com/liuning8023/p/4493156.html

yml

springboot用yml代替xml
yml简介:https://www.jianshu.com/p/cea930923f3d

官网工具搭建

工具:https://start.spring.io/
步骤:
配置项目信息
Hello SpringBoot(搭建springboot)
选择需要的依赖
Hello SpringBoot(搭建springboot)
最后下载
Hello SpringBoot(搭建springboot)
然后打开这个项目即可

idea搭建

创建项目spring initializr
Hello SpringBoot(搭建springboot)
配置项目信息
Hello SpringBoot(搭建springboot)
选择依赖
Hello SpringBoot(搭建springboot)
然后next项目就搭建好了
打开项目后大概结构为:
Hello SpringBoot(搭建springboot)
application.properties为全局配置属性文件
可用application.yml代替
properties比yml优先级高

例如:application.properties:

#设置端口号
server.port=9090

application.yml:

server:
  port: 7070

最终端口会以9090启动

实现类注释可用@RestController
在学springboot之前spring一直用@Controller @ResponseBody来表示json实现类

  • springboot 控制器
  • @Controller
  • @ResponseBody
  • @RestController包含以上两个注解
    测试:
    实现类hellocontroller.java
/**
 * springboot   控制器
 * @Controller
 * @ResponseBody
 * @RestController包含以上两个注解
 */
@RestController
public class HelloController {
    @RequestMapping("/hello")
    public String hello(){
        return "hello springboot";
    }
}

运行项目得到:
Hello SpringBoot(搭建springboot)
这样项目搭建就完成了!!!

上一篇:ros学习(六):geometry_msgs消息类型


下一篇:Spring线程池ThreadPoolTaskExecutor配置示例代码