英文:
Why there is no application.properties in my Spring Boot apllication?
问题
我使用Spring Boot Initializer网站创建了一个包,其中包括以下内容:
- Kotlin
- Gradle Kotlin
- 3.0.2
但是,我的项目中没有应用程序属性文件。我应该在哪里设置所需的属性?此外,是否有包含所有属性的文档?
- 我尝试在Google上搜索,但大多数是较旧版本的Spring Boot,所以不相关。
- 我尝试在官方网站上搜索,但没有描述我要找的内容。
英文:
I made a package using Spring Boot Initalizer website with the following:
- Kotlin
- Gradle Kotlin
- 3.0.2
But I don't have the application properties file in my project. Where can I set the required properties ? Also, there is any documentation available with all of them ?
- I tried searching on Google. But mostly are older versions of Spring Boot so that is not relevant
- I tried searching on official website but nothing describes what I search.
答案1
得分: 2
使用Spring Initializr生成具有相同配置的Spring Boot应用程序。
'application.properties' 文件位于 src > main > resources 文件夹中。
Spring Initializr - Kotlin, Gradle
英文:
Generated the spring boot app with same configuration using Spring Initializr.
The 'application.properties' file is present in src > main > resources folder.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论