为什么我的Spring Boot应用中没有application.properties文件?

huangapple go评论51阅读模式
英文:

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.

Spring Initializr - Kotlin, Gradle

huangapple
  • 本文由 发表于 2023年2月10日 03:22:25
  • 转载请务必保留本文链接:https://go.coder-hub.com/75403464.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定