我已经在 application.properties 文件中添加了“spring.profiles.active=local”但是在运行应用程序时它无法识别配置文件并使用默认配置文件运行
应用程序属性
# Tomcat Server Config
server.port=8071
#Profile Config
spring.profiles.active=local
应用程序-local.properties
# Spring JPA Config
spring.datasource.url=jdbc:postgresql://localhost:5432/User
spring.datasource.username=postgres
spring.datasource.password=amt123`
# Hibernate Config
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.id.new_generator_mappings=false
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.hibernate.ddl-auto=none