问题标签 [application.properties]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
spring-boot - 无法使用上下文读取 application.properties 文件值:spring boot 中的property-placeholder
我正在使用 application.properties 文件进行通用配置,我打算稍后根据这些配置进行配置。现在我正在使用另一个配置文件 root-context.xml,其中配置了 jaxws 客户端 bean。我想使用上下文属性占位符从 application.properties 文件中传递该 bean 配置的端点地址,但它抛出了以下错误:
这是项目结构
这是我的配置 src/main/resources/application.properites
src/main/resources/root-context.xml
主班
还有一点,应用程序能够解析根上下文中提到的 file:${config.monitor.dir}/${application.messages.file.name} 值,但不能解析端点地址。我在这里想念什么?请帮助。我正在使用引导版本 1.5.17
spring-boot - 如何使用系统环境设置应用程序属性变量
我需要使用系统变量 Ex 设置应用程序属性变量。
我在寡妇上的系统变量环境是 USER_NAME = admin
我想用 USER_NAME 设置 spring.datasource.username
我尝试执行此模式:
在 application.properties 文件中 spring.datasource.username={USER_NAME}
但没有设置。
有人知道该怎么做吗?
hibernate - 休眠二级缓存的应用程序属性
我的 Spring Boot application.properties 文件中有以下属性:
当我运行我的 springboot 应用程序时,它失败并显示以下堆栈跟踪:
任何想法,如何解决这个问题?我可以在网上找到示例,在这种情况下我们在其中添加hibernate.cache.region.factory_class
属性hibernate.cfg.xml
,但这里我们已经在我们的application.properties
in 文件中添加了它。
我的pom.xml
相关依赖项:
java - Gradle:具有配置文件支持的多项目构建的多个 application.properties
基本上,我想要有类似以下结构的东西:
dogs
,cats
并且birds
模块具有core
(或基本/通用)模块作为依赖项。对于 Gradle,它是compile project(':core')
.dogs
,cats
和birds
模块没有任何关系。唯一的共同特点是core
项目。
我计划将默认根src
目录设置为空,但如果可能的话,我也可以在此处使用application.properties
,application-{profile}.properties
进行一些初始化。
如何以这种方式为环境配置文件加载属性,以便下一个文件中的属性可以覆盖前一个文件中的属性?
例如,core
← dogs
:
- 根-application.properties
- 根应用程序prod.properties
- 核心应用程序属性
- 核心应用程序prod.properties
- 狗-application.properties
- 狗-应用程序-prod.properties
java - Spring boot:Oracle RAC DB 连接配置
在 Spring boot 应用中,需要配置 Oracle RAC DB URL。有人可以解释如何在 application.properties 中配置 Oracle RAC URL 吗?
已经验证了 Spring boot 官方文档,没有发现任何相关的东西。即使在 Common Properties 中验证,也找不到任何参考。
https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html
提前感谢您的帮助!
spring-boot - 将 YAML 文件转换为 Application.properties
我们如何将 YAML 文件转换为Application.properties?
有没有在线将 YAML 转换为 app.properties 的工具?
spring-boot - 从 application.properties 文件读取值时出现“标记无效”错误
我正在学习将 Apache Camel 与 Spring Boot 一起使用。我正在做一个演示,我正在从 FTP 位置获取文件并将其拖放到不同的位置。
当我直接在from()
方法中使用 ftps uri 时,该路由有效。但是,当我尝试将 ftps 位置存储在 application.properties 文件中并从那里访问它时,我收到一个Mark Invalid错误。
这有效:
这不是:
application.properties文件
骆驼路线
这是我得到的错误:
pom.xml
谁能指出我哪里出错了?提前致谢!
akka - 在 Akka 的 application.properties 中设置/更改列表属性
我想使用 slf4j 进行日志记录,基于logging doc。这些配置应更改为application.conf
:
我正在使用application.properties
而不是application.conf
:
但是上面的配置并没有改变akka.loggers
值(该值仍然是默认值:)akka.event.Logging$DefaultLogger
。
打印所有配置:
所以我的问题是:我如何设置/更改列表 prpperty 的值application.properties
?
我在2.5.18
Java 中使用 akka。