在Spring Boot中,可以通过以下方式来指定配置文件:
spring.config.location=classpath:/custom-config.properties
其中,classpath表示类路径,在这里表示resources目录下,custom-config.properties为自定义的配置文件名。
java -jar myapp.jar --spring.config.location=file:/path/to/custom-config.properties
其中,/path/to/custom-config.properties为自定义的配置文件路径。
@PropertySource("classpath:custom-config.properties")
@Configuration
public class AppConfig {
// Configuration code here
}
这样就可以加载自定义的配置文件作为应用程序的配置。