server:
context-path: /ipu
#通过启动命令传参指定端口
port: unknown
spring:
application:
#使用maven中的变量project.artifactId
name: ${project.artifactId}
mvc:
#无拦截
static-path-pattern: /**
resources:
static-locations: classpath:/${web.root}
session:
#session使用默认
store-type: none
web:
root: webapp/
logging:
file: target/logs/${project.artifactId}.log
|