spring boot 多个main spring boot 多个应用上下文_spring

 

 

一、server.servlet.context-path配置的作用

 

定义: server.servlet.context-path= # Context path of the application. 应用的上下文路径,也可以称为项目路径,是构成url地址的一部分。

 

 

server.servlet.context-path不配置时,默认为 / ,如:localhost:8080/xxxxxx

 

 

当server.servlet.context-path有配置时,比如 /demo,此时的访问方式为localhost:8080/demo/xxxxxx

 

 

二、springboot 2.0变革后的配置区别

 

1、springboot 2.0之前,配置为 server.context-path

 

 

2、springboot 2.0之后,配置为 server.servlet.context-path

 

 

spring boot 多个main spring boot 多个应用上下文_spring_02

 

 

 

spring boot 多个main spring boot 多个应用上下文_spring boot 多个main_03

 

 

spring boot 多个main spring boot 多个应用上下文_spring boot 多个main_04

 

 

 

 

spring boot 多个main spring boot 多个应用上下文_spring_05