system-properties Questions

3

Windows 7 Java 1.8.0_45 Eclipse Mars If you have system proxy set up to HTTP, the below will print HTTP only if it runs from main method of java application. However, if it is called from JUnit...
Kephart asked 29/6, 2015 at 12:24

2

Solved

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 HADOOP_OPTS="$HADOOP_...
Advise asked 19/3, 2013 at 1:41

3

Solved

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.properti...
Container asked 12/6, 2012 at 12:56

6

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 ke...
Calzada asked 19/4, 2011 at 10:14

4

Solved

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 fi...
Serrate asked 8/10, 2010 at 23:52

4

Solved

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....
Vala asked 12/7, 2010 at 19:57

3

Solved

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 xmlns="http://maven.apache.org/POM/4....
Junejuneau asked 26/10, 2011 at 13:53

2

Solved

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 ...
Chintz asked 30/9, 2009 at 23:41

3

Solved

Is there an easy way, using Java Swing, to display the Java system property names and values on my workstation? Basically, what I'm looking for is a Java Swing application that displays something ...
Echino asked 28/6, 2013 at 13:4

4

Solved

There are a couple of Java system properties, among them things like java.home and path.separator, user.home. The spec does not mention any formal promises on the existence of those values. Espec...
Gestalt asked 10/6, 2013 at 12:22

2

Solved

I am not clear about this. When I run a java App or run an Applet in applet viewer, (in the IDE environment), System.getProperty("java.class.path") gives me the same as System.getenv("CLASSPATH") w...
Secundines asked 19/5, 2010 at 7:45

1

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 bui...
Putrid asked 11/5, 2013 at 17:37

1

Solved

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 s...
Roush asked 3/4, 2013 at 8:19

1

Solved

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 ...
Frequentative asked 6/12, 2012 at 11:9

9

Solved

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 sim...
Kristikristian asked 26/11, 2009 at 11:14

6

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?
Bowles asked 8/10, 2012 at 12:49

1

Solved

I'm running maven builds from TeamCity and making use of build.vcs.number to write the Subversion revision into my manifest. In any Maven build with Subversion as the VCS, TeamCity adds -Dbuild.v...

1

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

Solved

I'm running a unit test in NetBeans 7.2. using Maven. How to set a system property? I've tried adding the property using: Project Properties > Run > JVM arguments but it doesn't make a differen...
Schrock asked 1/6, 2012 at 13:49

3

Solved

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.
Gilli asked 16/3, 2012 at 12:2

1

Solved

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 http://maven.apache.org/xsd/maven...
Hendricks asked 28/1, 2011 at 8:10

3

Solved

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); Ho...
Intercrop asked 1/12, 2010 at 11:46

5

Solved

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, memory...
Nahshon asked 28/7, 2010 at 12:58

3

Solved

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 i...
Alluvium asked 5/5, 2009 at 9:13

1

Solved

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 sys...
Indianapolis asked 17/4, 2009 at 8:48

© 2022 - 2024 — McMap. All rights reserved.