美文网首页
spring boot 入门

spring boot 入门

作者: hubeiqiyuan | 来源:发表于2017-08-14 17:56 被阅读0次

    前置知识:

    1:注解了解

    2:maven 基础知识

    3:yaml 基础

    新建spring initializr web项目,DemoApplication 运用到的注解 @SpringBootApplication @ComponentScan("com.example.demo")

    编写controller 运用到的注解 @RestController @RequestMapping("properties")

    编写属性配置 运用到的注解 @Value("${age}") 单个属性 若有多个属性编写bean 类 运用到的注解 @ConfigurationProperties(prefix="girl") @Component

    属性配置类

    注:这里运用application.yml 来替代application.property .文件名是固定的,否则访问不到

    多环境配置 运用到的注解 spring.profiles.active

    修改对应的属性文件名称

    controller的使用 @RestController=@Controller+@ResponBody

    @RequestMapping("properties") 配置Url 映射,就是访问的url 地址 可以是某各类或者某个方法 也可拼接

    为请求设置参数 写在请求方法的参数中 @PathVariable 替换Url 指定的路径 @RequestParam(value="id",required=false,defaultValue="0") Integer id 

    明天整一个用spring boot 的数据库的增删改查demo

    相关文章

      网友评论

          本文标题:spring boot 入门

          本文链接:https://www.haomeiwen.com/subject/xmzyrxtx.html