Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
10k views

Maven 2.1.0 not passing on system properties to Java virtual machine

We use the command line to pass on system properties to the Java virtual machine when running our Hudson builds on a Linux box. It used to work quite well in 2.0.9 by since we upgraded to 2.1.0 it ...
14
votes
4answers
31k views

How can I specify system properties in Tomcat configuration on startup?

I understand that I can specify system properties to Tomcat by passing arguments with the -D parameter, for example "-Dmy.prop=value". I am wondering if there is a cleaner way of doing this by ...
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
893 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
2answers
203 views

Why does svn:executable work for one script and not the other?

I have a bash script (.sh file) and a Python script (.py) file in the same directory. Both have the svn:executable permission. However when I do an 'svn update', only the Bash script gets executable ...
3
votes
1answer
891 views

How do I set a system property for my project in sbt?

I'm sure I'm missing something really simple... I want to set the system property java.awt.headless to true for my sbt project. Reading the page on properties I think that I need to use system or ...
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
2answers
85 views

How to read Maven properties from JUnit test?

I'm using Maven 3.0.3 with JUnit 4.8.1. In my JUnit test, how do I read the project.artifactId defined in my Maven pom.xml file? In my pom, I have <project ...
2
votes
1answer
62 views

Specifying system properties in Grails 2.0 interactive mode

Is there a way how to specify system property in (already started) grails interactive mode ? For example I would specify environment in command line: grails -Dgrails.env=staging run-app but in ...
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
2answers
3k views

Specify system property to Maven project

Is there a way ( I mean how do I ) set a system property in a maven project? I want to access a property from my test and my webapp ( running locally ) and I know I can use a java system property. ...
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
53 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
98 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
234 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
0answers
499 views

Set system properties for Android application

Can I (in the Manifest file or somewhere else) set system properties for my Android application? I want to use a library that can be configured using system properties, and being able to just use ...
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

Java Preprocessor Check OS

How do I use Java preprocessors to determine what OS I am compiling on?
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
2k views

Jetty - set system property

I run webapp on Jetty. The configuration for the app come from file that lives on the same server where Jetty is running. Inside the app I rely on the system property to obtain path to the file so I ...
1
vote
3answers
399 views

Maven system property priority

I have following pom.xml <project> <properties> <buildNumber>dev</buildNumber> </properties> <build> ...
1
vote
1answer
224 views

Getting null System properties on Sony Ericsson P1i

I am developing a file-api app on Sony P1i. I used the following System properties to get the images, tones folder names/paths but all are returning null.... System.getProperty("fileconn.dir.photos") ...
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
108 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
0answers
215 views

How to get MSISDN (monile no.) on nokia s60 sdk [closed]

Possible Duplicate: j2ME-detect mobile number I need to get MSISDN (monile no.) on nokia s60 sdk, how can i do that in j2me
0
votes
1answer
523 views

Maven property overloading

I have very simple maven descriptor which defined some properties: <?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
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
515 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 ...