System properties a key value pairs that can be provided to an application, often used to configure it at run time.

learn more… | top users | synonyms

1
vote
1answer
28 views

Jetty home system property is not set

Im trying to use the system property in my jetty config as the following: <SystemProperty name="jetty.home" default="" />/etc/jetty7/context But the jetty.home always returns empty. How can i ...
0
votes
1answer
45 views

How do I set a system property for compiling in Eclipse?

When I build my project from the command line with Maven, I can pass in a property using -Dsomeproperty=true For example: mvn clean package -Dsomeproperty=true How do I do the same when ...
0
votes
1answer
76 views

Modify TeamCity build parameters programatically

I created some system properties in TC build configuration. The value of these properties are passed to a maven configuration this way: clean test -Dargument1=%system.property1% ...
1
vote
1answer
48 views

Accessing hadoop config setting without having to pass Configuration object through many layers

In the hadoop project I am working on, I need to access a setting in the hadoop Configuration object. However, I only need this setting many, many layers into the reducer, and I really would rather ...
4
votes
1answer
146 views

How to pass a system property to gradle with the jenkins gradle plugin?

I have a gradle tasks that deploys some stuff to bintray using curl. For this to work it needs my bintray api key. I don't want to put that in my build script (or a property file) since all this ...
0
votes
2answers
77 views

How to specify system property in hadoop except modify hadoop-env.sh?

I'd like to set system property (not hadoop property) when running hadoop jobs. I found that it's not easy to setting system property. Even I set the property in shell export ...
0
votes
2answers
102 views

Maven not passing overriden properties to ant

Currently running into a weird problem with a Maven build that is making a call to ant, within the parent pom the following property is defined: - ...
0
votes
1answer
36 views

Why does -Dproperty=value not work if -jar is specified first?

Given the following class: public class SpecifySystemPropertiesCommandLine { public static void main(String[] args) { String prop1 = System.getProperty("prop1", "defaultvalue"); ...
0
votes
1answer
144 views

How do I specify the commit message in the pom when using scm-maven-plugin?

I'm trying to use the maven SCM plugin to commit some files to a git repo during an automated build, the plugin requires a commit message to be set as a system property, I don't want to have to pass ...
2
votes
1answer
140 views

maven-surefire-plugin and ReportNG cannot change stylesheet for the test report

I like to change style (use another .css than reportng.css) on the standard report from ReportNG using Maven. My pom.xlm looks like this ... <build> <plugins> ...
1
vote
2answers
199 views

When to use environment variables vs. system properties?

I wonder which of the following is a preferred approach? We can set things up as APP_HOME=/path/to/file (export in .profile or something along those lines) and access it as System.getenv("APP_HOME") ...
1
vote
0answers
33 views

Problems with execution of JUnit4 TestCases and TestSuite [duplicate]

Possible Duplicate: @parameters method is executed before @beforeclass method I am facing some trouble with JUnit 4 TestsUites and Parameterized Tests. In my Suite I want to set a ...
2
votes
1answer
323 views

Java system Properties, http.proxyHost, two questions

I am developing a Java application that makes HTTP requests, and half of my development time is behind a proxy. So I have the following block in my code: if (BEHIND_PROXY) { java.util.Properties ...
0
votes
2answers
315 views

Java System.getProperty(“line.separator”) not working in apache server

My method System.getProperty("line.separator") is not working in Apache server but seems to work in local Eclipse. Actual implementation str2=str1.replace(System.getProperty("line.separator"), ...
2
votes
1answer
111 views

How can i get device, manufacturer and model in a device that support J2ME? [closed]

I have a nokia 2730 and want to read model and manufacturer, how can i do it using a j2me application? Could someone help me with this issue?
0
votes
2answers
203 views

Nested system properties in Java command line

Is there a way to nest system properties in a Java command line? For instance, specifying something like: java -DworkingDir=/tmp -DconfigFile=${workingDir}/someFile.config. I aim to use something ...
1
vote
0answers
177 views

auto-deploy .war to remote jboss4.2.3.GA fail using hudson deploy plugin

I'm using hudson-deploy plugin, to auto-deploy my .war file to a remote jboss4.2.3.GA. When I set the port lower than 10000, it works, for example: http://10.78.68.210:8080/ But our system is using ...
3
votes
6answers
288 views

Is it bad practice to use System Properties to store global variables in Java? [closed]

Are they any potential issues (security, performance) or general bad vibes attached to using System.getProperty()/System.setProperty() to store application-wide variables in Java?
1
vote
2answers
1k views

[JBoss AS7]: where to set environment properties

I need to set the jvm system property file.encoding to utf-8, in my JBoss7 environment. Where do I have to make this change? standalone.xml?
2
votes
2answers
2k views

Set System Property for JUnit Runner (Eclipse) to test a Spring Web App

Our web app uses SystemPropertyPlaceholder to load property files depending on the value of a system property (see below) The default setup for running it locally is stored in application.properties. ...
3
votes
2answers
473 views

If I specify a System property multiple times when invoking JVM which value is used?

If I specify a system property multiple times when invoking the JVM which value will I actually get when I retrieve the property? e.g. java -Dprop=A -Dprop=B -jar my.jar What will be the result ...
1
vote
1answer
2k views

How to set system properties using Netbeans 7.2 and Maven?

I'm running a unit test in Netbeans 7.2. using Maven. I am wondering how to set a system property? I've tried adding the property using: Project Properties > Run > JVM arguments but it doesnt make ...
2
votes
4answers
144 views

Can OSGi frameworks start bundles concurrently?

We have two bundles, both embed a different version of the same 3rd party library and we have to use them with different configurations. Unfortunately the library is only configurable via system ...
1
vote
1answer
480 views

Maven exec with multiple system properties

I'm trying to run mvn exec with multiple system properties...it works ok with one but not with two for some reason. e.g. This works fine mvn -Dlocation=c:\tmp exec:java -Dexec.mainClass="MyClass" ...
1
vote
3answers
3k views

How to add new System Properties in java

Is it possible to add new values to Java System Properties. If there is any how can introduce new keys with there corresponding values in Java System Properties.
-2
votes
2answers
415 views

system properties in java

Why do we need to add the properties like Properties props = System.getProperties(); props.put("mail.smtp.starttls.enable", "true"); // added this line props.put("mail.smtp.host", host); ...
3
votes
1answer
254 views

java getInputArguments() returns awkward results if system property value contains spaces

Consider a main method: public static void main(String[] args) throws Exception { System.out.println("property='" + System.getProperty("property") + "'"); List<String> inputArgs = ...
0
votes
1answer
624 views

Java: Where does Maven store system properties set in the pom.xml within a compiled jar?

We've specified a bunch of system properties in our maven compiler plugin definition within pom.xml: <build> <plugins> <plugin> ...
1
vote
0answers
364 views

glassfish 3.1 system properties deployment

I had a log4j error (see here) and the suggested fix worked. I set the org.apache.catalina.loader.WebappClassLoader.ENABLE_CLEAR_REFERENCES system property to false in the console with asadmin. As I ...
0
votes
2answers
600 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
129 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 ...
1
vote
1answer
220 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
557 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 ...
3
votes
2answers
1k 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 ...
0
votes
1answer
768 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" ...
2
votes
1answer
435 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 ...
4
votes
3answers
8k 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
756 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
239 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 ...
5
votes
4answers
6k 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 ...
2
votes
2answers
514 views

About system properties

I know how to access the Android system properties from the application layer. In framework layer android.os.SystemProperties class take the responsibility to get all the properties. But internally ...
1
vote
1answer
1k 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
1k 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 trying to do is to create a new File with relative path in my user-directory after ...
3
votes
1answer
2k 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 ...
1
vote
2answers
310 views

Java Preprocessor Check OS

How do I use Java preprocessors to determine what OS I am compiling on?
1
vote
3answers
1k 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 ...
2
votes
3answers
2k 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 ...
1
vote
2answers
446 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 ...
3
votes
3answers
8k 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
969 views

Maven system property priority

I have following pom.xml <project> <properties> <buildNumber>dev</buildNumber> </properties> <build> ...

1 2