1. 程式人生 > >Spring Boot2.0之 yml的使用

Spring Boot2.0之 yml的使用

yml

Spring Boot 預設讀取   .yml   .properties 結尾的

yml非常好的作用,比properties更節約  結構清晰

server:

  port:  8090

  context-path: /toov5

父級是公用的

一定要注意啊啊啊 空格! port:  8090 中間空格!

package com.toov5.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; @RestController public class Index { @RequestMapping("/index") public String index(){ return "ok"; } }

啟動類:

package com.toov5.controller;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class app { public static void main(String[] args) { SpringApplication.run(app.class, args); } }

application.yml

server:
  port: 80
 

  啟動後:

修改成功!

訪問

是不是很好玩呀