Questions tagged «properties-file»


6
在基于servlet的应用程序中的何处放置以及如何读取配置资源文件?
在我的Web应用程序中,我必须将电子邮件发送给一组预定义的用户,例如finance@xyz.com,因此我希望将其添加到.properties文件中并在需要时进行访问。这是正确的程序吗?如果是这样,那么我应该将该文件放在哪里?我正在使用Netbeans IDE,它具有用于源文件和JSP文件的两个单独的文件夹。

10
如何从属性文件读取值?
我正在用弹簧。我需要从属性文件中读取值。这是内部属性文件,而不是外部属性文件。属性文件可以如下。 some.properties ---file name. values are below. abc = abc def = dsd ghi = weds jil = sdd 我需要以传统方式从属性文件中读取这些值。如何实现呢?Spring 3.0是否有任何最新方法?

3
如何在Maven中读取外部属性文件
有谁知道如何在Maven中读取x.properties文件。我知道有多种方法可以使用资源过滤来读取属性文件并从中设置值,但是我想要在pom.xml中使用以下方法: <properties file="x.properties"> </properties> 对此进行了一些讨论: Maven外部属性

9
从Java包加载属性文件
我需要读取埋在我的包结构中的属性文件com.al.common.email.templates。 我已经尝试了一切,但无法解决。 最后,我的代码将在servlet容器中运行,但是我不想依赖任何容器。我写了JUnit测试用例,它需要在两个方面都能工作。

5
Spring .properties文件:将元素作为数组获取
我正在.properties使用Spring 从文件加载属性属性,如下所示: file: elements.properties base.module.elementToSearch=1 base.module.elementToSearch=2 base.module.elementToSearch=3 base.module.elementToSearch=4 base.module.elementToSearch=5 base.module.elementToSearch=6 Spring xml文件 file: myapplication.xml <bean id="some" class="com.some.Class"> <property name="property" value="#{base.module.elementToSearch}" /> </bean> 还有我的Class.java file: Class.java public void setProperty(final List<Integer> elements){ this.elements = elements; } 但是在调试时,参数元素仅将最后一个元素放入列表中,因此,存在一个值为“ 6”的元素的列表,而不是包含6个元素的列表。 我尝试了其他方法,例如仅添加值,#{base.module}但随后在属性文件中找不到任何参数。 一种解决方法是在elements.properties文件中使用逗号分隔列表,例如: base.module.elementToSearch=1,2,3,4,5,6 并将其用作String并解析它,但是有更好的解决方案吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.