springboot项目配置项目名 端口号

springboot项目jar方式内嵌tomcat启动时默认端口号为8080,项目名为root

需要修改可通过application.properties文件配置

server.port=8083
server.servlet.context-path= /pes01

springboot项目配置项目名 端口号_第1张图片

如果项目下建立了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 test01(@RequestBody HashMap reqMap){
        log.info("==============test01============");
        log.info("reqMap:"+reqMap.toString());
        Map map=new HashMap<>();
        map.put($CODE,$200);
        map.put($MESSAGE,$SUCCESS);
        return  map;
    }
}

postman测试

springboot项目配置项目名 端口号_第2张图片

你可能感兴趣的:(java,spring,boot,tomcat)