springboot项目jar方式内嵌tomcat启动时默认端口号为8080,项目名为root
需要修改可通过application.properties文件配置
server.port=8083 server.servlet.context-path= /pes01
如果项目下建立了application.yml文件,则在application.yml文件配置中即可,如果都配置了,同一目录下,properties配置优先级
> YAML配置优先级
yml文件配置和json差不多 ,有层级机构
server: port: 8083 servlet: context-path:/pes01
配置后启动测试效果
controller
package com.bsoft.controller; import lombok.extern.slf4j.Slf4j; import
org.springframework.web.bind.annotation.PostMapping; import
org.springframework.web.bind.annotation.RequestBody; import
org.springframework.web.bind.annotation.RequestMapping; import
org.springframework.web.bind.annotation.RestController; import
java.util.HashMap; import java.util.Map; import static
com.bsoft.util.PtBaseHelper.*; /** * description:体检人脸识别服务API * date: 2021/5/21
* author: gaom * version: 1.0 */ @RestController @RequestMapping("/faceApi")
@Slf4j public class PesFaceController { /** * 这个一个测试服务 * @return */
@PostMapping("/test01") public Map<String,Object> test01(@RequestBody
HashMap<String,Object> reqMap){ log.info("==============test01============");
log.info("reqMap:"+reqMap.toString()); Map<String,Object> map=new HashMap<>();
map.put($CODE,$200); map.put($MESSAGE,$SUCCESS); return map; } }
postman测试