The properties-file tag has no wiki summary.
7
votes
3answers
12k views
Where to place configuration properties files in a JSP/Servlet web application?
In my web application I have to send email to set of predefined users like finance@xyz.com, so I wish to add that to a .properties file and access it when required. Is this a correct procedure, if so ...
7
votes
4answers
26k views
loading properties file from java package
I need to read a properties files that's buried in my package structure.
com.al.common.email.templates
I've tried everything and I can't figure it out.
In the end, my code will be running in a servlet ...
5
votes
1answer
253 views
Spring Property Injection in a final attribute @Value - Java
A simple question on Spring injection from a properties file for a final attribute.
I have a properties file which I want to store a file path in. Generally when I use properties files I setup class ...
5
votes
1answer
1k views
Spring .properties file - Get element as an Array
I'm loading properties attributes from a .properties file using Spring as follows:
file: elements.properties
base.module.elementToSearch=1
base.module.elementToSearch=2
base.module.elementToSearch=3
...
3
votes
3answers
326 views
Does .net have an equivalent to Java's .properties files?
To jog everyone's memory, Java has these files with an extension of ".properties", which are basically an ASCII text file full of key-value pairs. The framework has some really easy ways to suck that ...
2
votes
1answer
100 views
Spanish character óé display error in Java properties
When I process a properties file with the Spanish characters ó and é, characters are displayed as ?. I tried different ways to fix this, but still fail:
I tried to use \uxxxx
I tried to use ...
2
votes
2answers
261 views
Eclipse won't read a config file
I have an Eclipse web project. I have a file called deploy.properties in the root directory which doesn't seem to get read. I have a feeling that I may need to add the file to the "build path" (like a ...
2
votes
2answers
1k views
ant script to use use two .properties files?
I want to know if it is possible to get an ant script to reference 2 different .properties files at once, and if so, how to accomplish this.
Assume that the properties contained within the two ...
1
vote
1answer
101 views
How would I specify a Hibernate “@Pattern” annotation using a regular expression from a .properties file or database
Situation: I would like to perform Hibernate Validation based upon user properties (to allow different validation rules for input based upon a user's account data) - I think it must be possible to use ...
1
vote
2answers
255 views
A jar in tomcat's lib can't see a properties file in my webapp
Recently I separated the core functionality of my core servlets application into a jar file. This jar file is now deployed in tomcat's lib folder and the application(i.e. servlets, jsps, properties ...
1
vote
1answer
183 views
Code running under ant doesn't find a properties file unless I fork the JVM
I'm just getting started with Ant, and I'm having problems getting a "run" target to work. Part of my code loads a properties file, and it always fails to find this file unless I make my run target ...
1
vote
2answers
650 views
How to inject complete propertiesfile in a springbean
I have a properties-file with a lot of values and I do not want to list them in my bean-configuration-file separately. E.g.:
<property name="foo">
<value>${foo}</value>
...
1
vote
1answer
305 views
Render SelectItem based on Property File
I have a selectOneRadio menu with some selectItem's in them. I want to show the choices based on a property file. For example, if a store doesn't have a credit card reader, then I wouldn't show the ...
1
vote
2answers
98 views
Modifying Properties files in Tomcat
Is it possible to modify a .properties file in Tomcat, that is to add properties to it, instead of just reading them?
0
votes
0answers
15 views
How can you transfer properties from a Java-style properties-file into an MS-Word-Document as file properties?
I want to be able to change GUI-texts with the least possible effort and in as few places as possible. The texts already come from properties-files. But, alas, the documentation has to be adaptapted. ...
0
votes
2answers
75 views
Dos batch script error? Error occurred while processing: .exe
In a DOS script that I wrote, I am unable to figure out what causes this error that I get:
The system cannot find the file specified.
Error occurred while processing: .exe.
Here is the script. Any ...
0
votes
2answers
98 views
How will append a utf-8 string to a properties file
How will append a utf-8 string to a properties file. I have given the code below.
public static void addNewAppIdToRootFiles() {
Properties properties = new Properties();
try ...
0
votes
3answers
60 views
How to make a variable/constant available all the time once initialized?
I've a swing application that has to connect to database for some resources, for this i used .properties file to store database properties and that can be read at runtime.
For this i am using the ...
0
votes
2answers
45 views
ResourceBundle reads from 2 Properties files at the same time
in my project I have 2 properties files that are used for internationalization.
I use ResourceBundle with Locale parameter and I store the keys from properties files in a collection. Unfortunately in ...
0
votes
1answer
68 views
How to generate multiple HTML items based on a properties file?
I have the following properties file:
title = Welcome to Home Page
total = 5
gallery1 = images/gallery/cs.png
text1 = <b>Counter Strike</b><br />
gallery2 = images/gallery/css.png
...
0
votes
1answer
76 views
how to add properties files in FLEX4 and AS3
Is there any existence of properties file in FLEX4/AS3 ? my requirement is to read data from properties file that flex AIR loading time is minimized and should not occupy more memory. my data set is ...
0
votes
1answer
142 views
Spring properties file and spring reference
How to make reference link in properties file.
For example, I have spring config:
<property name="velocityProperties">
<value>
<entry ...
0
votes
3answers
117 views
what kind of file should i use in android to reference information that i stored?
I have created an android app that calculates the numerical values of word, and gives you a list of other words with the same numerical value. The way I have been doing it, is storring the words and ...
0
votes
1answer
60 views
What kind of file should I be using when loading a database file in android?
write now, I am working on an app that is based on an application written in java for the computer. in that program, I loaded several database files into it. those files were .properties files. I ...
0
votes
3answers
545 views
How to parse property value in properties file
Hi
I am loading a property file to establish DB connection,
ex:
DB1="JDBc................", username , password
above line is as in property file, but when i call getConnection method I need to ...
0
votes
2answers
356 views
When to read a .properties file in a Java Web Application
I'm developing a web application using Java EE6 and JSF 2.0. I have a .properties file in which I am storing a few constants, which I need to change easily before deploying the app. I know how to read ...
0
votes
1answer
39 views
Which Language Uses '@' Encapsulated Variables
I'm trying to figure out how a rather large Java project works by stepping through it in the debugger on my Windows machine, but for it to get past its initialization routines all the values in ...
0
votes
1answer
150 views
where to store .properties file for use in c++ dll
I created a .properties file that contains a few simple key = value pairs.
I tried it out from a sample c++ console application, using imported java classes, and I was able to access it, no problem.
...