问题标签 [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 - 如何在spring boot webapp中设置构建路径配置
spring-boot - 如何更改 Spring Boot 应用程序中 messages.properties 的路径?
目前我在 src/main/resources 中使用 messages.properties,但我想在 WEB-INF/ 中加载 messages.properties。
...
我在 application.properties 中配置...
...但没有工作。
excel - Spring-boot 使用 application.properties 解析 excel 文件或 .csv 文件
我正在开发一个弹簧启动应用程序。我有一个输入excel文件的地方。我已将该文件转换为 .csv 格式。现在我通过索引值访问列,但我想使用标题访问它们。使用 application.properties 怎么可能?
提前致谢。
spring - How to select several properties for specific name
I am working on a web project using Spring and Spring MVC.
I have a feature that is the same for 3 different elements (which are available in dropdown in view). Only two parameters change for each item. I decided to put these elements and parameters in a .properties
file to permit the user change them. So for example in my .properties I have the following:
For the moment I am able to retrieve each element separately.
For example:
(SpringPropertiesUtil
extends PropertyPlaceholderConfigurer
)
But my question is: how can I retrieve all the parameters relative to one element?
For example the user selects "FC", how in my service layer can I retrieve both fcUuid and fcTag parameters?
Of course I can do something like:
But I don't want to do that because the user can add elements so I would have to modify the code each time.
I would like something like:
Or even better:
hibernate - 在 application.properties 文件中指定 @column(name=tempname)
我正在使用 spring-boot 和 hibernate。我想在 application.properties 文件或 xml 文件中外部化实体列名。就像是,
在实体类中,
在 application.properties
maven - Maven 不断覆盖我的 spring boot application.properties 文件?
我正在使用开源 messenger4j 项目创建一个基于 spring boog 的 Facebook 机器人:
我在 Ubuntu 12.x 上运行并使用 Maven 3.5.0。
我需要使用 nano 来编辑 Maven 项目的 application.properties 文件。我进行了编辑,包括更改服务器端口和其他一些与 SSL 相关的项目,application.properties 文件如下所示:
然后我保存文件,退出 nano,然后“cat”该文件以确保编辑仍然存在。他们是。但是,当我使用这个 Maven 包装器命令行编译和运行 messenger4j 应用程序时:
我注意到状态消息告诉我嵌入式 Tomcat 服务器没有在端口 1919 上侦听,而是在默认端口 8080 上侦听。我重新打开 application.properties 文件,我再次只看到默认内容并看到以下内容:
有谁知道是什么原因造成的以及如何解决这个问题?看来 Maven 每次编译和运行时都会从其他来源覆盖 application.properties 文件(我在这里猜)?
我看到一个堆栈溢出帖子谈论一个命令行标志,告诉 maven 不要覆盖 application.properties 文件。但是,如果 Maven 正在使用(或应该使用)另一个源文件来自动生成 application.properties 文件,我想编辑该文件而不是使用该标志并保持 Maven 项目的通常预期工作流程。如果我能提供帮助,我也不想在 mvnw 命令行上传递大量参数。
更新:添加 pom.xml 文件。
这是我的pom.xml文件:
更新:事实证明我正在编辑./target/classes/application.properties文件,而不是 Maven 从中复制以创建该文件的文件。我指的是名为./src/main/resources/application.properties的真正源文件。谢谢邓尼和凯尔。
spring-boot - SpringBoot 中属性文件、YAML 文件和命令行参数之间的优先顺序
application.properties
很久以来我一直在我的 Spring 应用程序中使用文件。但最近我遇到了application.yaml
文件。三者之间的优先顺序是什么以及使用个人的优势(如果有的话)。
我知道这可能是个愚蠢的问题。但我对它们的用法感到困惑。
java - Java spring 无法从 application.properties 中正确读取值
我对文件有一个非常困难的问题,application.properties
因为我无法使用 java spring 从这个文件中正确读取。下面给出简单的源代码。先感谢您。
application.properties file
Messages.java
它抛出 aFileNotFoundException
并显示该值始终为null
。
java - Spring Boot:@Value 始终返回 null
我想使用application.properties
文件中的一个值,以便在另一个类的方法中传递它。问题是该值总是返回NULL
。可能是什么问题呢?提前致谢。
application.properties
FileSystem.java
spring-boot - Spring Boot“application.properties”文件的语法是什么?
我已经看到了不同的属性分隔符:=找不到有关它的参考。