Tagged Questions
11
votes
9answers
2k views
Crowdsourcing a Complete list of Common Java System Properties and Known Values
I've been inspired by another question: Best Practice for Using Java System Properties
I'm currently looking for a complete list of Java system properties and possible values. I'm working on a simple ...
7
votes
5answers
333 views
How to retrieve useful system information in java?
Which system information are useful - especially when tracing an exception or other problems down - in a java application?
I am thinking about details about exceptions, java/os information, ...
6
votes
4answers
894 views
How do I detect whether the file system is case-sensitive?
I have a List<String> of file names from a folder and a certain file name as String. I want to detect whether the file name is in the list, but need to respect the underlying file system's ...
4
votes
4answers
1k views
Setting Java system properties without putting the values on the command line
I have some Java code which depends on a system property super.secret.password. I need to set that property when i run my app. The app will be started by a shell script, and the password will be kept ...
3
votes
1answer
274 views
Can you reload JBoss ESB services via an MBean or something similar?
The services defined in my jboss-esb.xml refer to properties from the SystemProperties service.
When I change a property in the properties file (ie, /conf/my-props.properties) I can reload them using ...
3
votes
5answers
3k views
Scope of the Java System Properties
In Java we use System.setProperty() method to set some system properties. According to this article the use of system properties is bit tricky.
System.setProperty() can be an evil call.
* It is ...
2
votes
3answers
449 views
Loading system properties for tests
I recently found a solution that allows me to load system properties for my unit tests. It works great if I'm running a test individually, but if I choose to run the whole test suite, it fails. Can ...
2
votes
1answer
2k views
Change user.home system property
How do I change the user.home system property from outside my java program, so that it thinks it's a different directory from D:\Documents and Settings\%USERNAME%? Via environment variables, or VM ...
1
vote
1answer
54 views
import resource from user home directory
I'd like to import a xml resource from users home directory:
<import resource="${user.home}/beans.xml" />
But this one does not work (placeholder is not replaced).
The ...
1
vote
0answers
100 views
http.proxyHost system property is set to null
Please help me to find out the reason of the following behaviour.
I have two applications running in Tomcat container: my application and Hudson (v2.2.0). Tomcat is started with ...
1
vote
4answers
236 views
Set multiple system properties java command line
Is there an easier way to specify multiple System Properties on the command line to a java program rather than having multiple -D statements?
Trying to avoid this:
java -jar -DNAME="myName" ...
1
vote
2answers
191 views
How to access Java system properties from Freemarker templates?
I started using Freemarker for assembling simple HTML pages, using FMPP Maven plugin. So far so good.
But one thing I need to do is to include value of a system property (one of system properties ...
1
vote
3answers
108 views
How to tell if a system property comes from human operator, not from default?
I have a JAR-packaged standalone application that, when executed, unpacks itself into a temporal directory and spawns a child process within that directory. The reason being some third-party code and ...
1
vote
3answers
480 views
File.createNewFile() for relative path uses wrong directory after changing “user.dir”-Property
this is my first time asking a question on this great page, so please be patient to me if i make mistakes.
What i am trieing to do is to create a new File with relative path in my user-directory after ...
1
vote
2answers
215 views
1
vote
2answers
130 views
inheriting the user.home property within my custom .properties file
Can I do something like working-dir="file:${user.home}/some-directory" within my .properties file? I am using ResourceBundle to load configuration from a .properties file and I would to inherit a ...
1
vote
3answers
399 views
Maven system property priority
I have following pom.xml
<project>
<properties>
<buildNumber>dev</buildNumber>
</properties>
<build>
...
1
vote
3answers
441 views
Initializing program with files passed as main arguments (system.getProperty())
I have to execute my program with this line:
java -DImport=data.txt -Din=input.dat -Dout=output1.dat main.Main
I've been trying to figure it out how to do this but can't really get it working. I'm ...
1
vote
1answer
505 views
How do I Use “Multiple” SSL certificates in Java?
I have an application that communicate with multiple hosts at the same time. In this case I need to use multiple keystores to establish communication with other hosts.
In this case setting the system ...
0
votes
2answers
53 views
Obtaining the “user.dir” system property for a java process from the command line
I am trying to read the system property "user.dir" from the command line for a particular java process. I have seen several examples of obtaining the system property from Java code ...
0
votes
3answers
28 views
Creating a directory within another directory in user.home?
I was just wondering if the code I made will work to create multiple directories within each other. I used this as a reference.
String username = enterUserTF.getText(); //the username the ...
0
votes
1answer
110 views
Configuring System property in Spring
I have file channel adapter which need to listen to a directory in specfied intervals. And I have the following code.
<file:inbound-channel-adapter id="fileAdapter"
...
0
votes
3answers
179 views
Set System propery to Null in Java
In my unit tests I need to set the "workingDir" system property to Null.
But I can not do somesing like this, because It give me NullPointerException:
System.setProperty("workingDir", null);
How ...
0
votes
2answers
699 views
How can I pass java system property to jetty?
How can I pass a system property to jetty startup something like -DSERVER="localhost"
if it is in start.config what is the exact syntax ?
and will it be available to my deployed war with this ...
0
votes
1answer
514 views
How to ignore expired certificates from outside a Java application?
We have a Java application that we need to ignore an expired self-signed cert, however we cannot modify the code to do this. I wondering if there was a System Property or environment variable that we ...
0
votes
1answer
516 views
os.name system property value in Java for Windows Server 2008
Does anyone know the value of the Java system property "os.name" on Windows Server 2008? I found a rally going here ...
0
votes
5answers
3k views
System properties can't be resolved in Spring XML using Maven
My application needs to know the path to a directory where it can store its data. I tried to set a Java system property and use that variable as a placeholder in my Spring XML.
In Eclipse I added ...
0
votes
1answer
187 views
Why would you want to set system properties such as java.vm.specification.version on App Engine?
According to the App Engine documentation, you can set system properties and environment variables for your app in the deployment descriptor and App Engine sets the following system properties when it ...