1
vote
1answer
30 views

CloudBees XML Config vs Command-Line Tool

I see that CloudBees allows apps to be deployed with a cloudbees-web.xml descriptor, however on the page in the developer docs that describes this descriptor, it says: The cloudbees-web.xml is ...
0
votes
3answers
41 views

Resources and config loading in maven project

I'm using Maven for desktop applycation. I read about Maven standart directory layout and I have this project structure for now: App |-- pom.xml `-- src |-- main |-- java | `-- ...
0
votes
0answers
33 views

Order of loading during Spring Java Config

I have a Java Config class that looks similar to: @Configuration public class MyConfig { @Autowired(required = true) private MyRegistry registry; public CustomAttributeConfig() { ...
0
votes
1answer
91 views

Hibernate configuration file

It seems that I have a problem with my configuration file but I really don't find out what it could be. I used to use hibernate 3.6, I now use hibernate 4.2, there are proly some important changes ...
-2
votes
2answers
37 views

How to write a conf file for Java? [closed]

I am writing a code in Processing 2.0 and have embedded it in Java environment using Eclipse. The code has many parameters which I frequently need to access in all classes. Below is the example of ...
1
vote
1answer
90 views

how can i override a typesafe config list value on the command line?

i have an application.conf file with a structure like the following: poller { datacenters = [] } i would like to override datacenters on the command line. for other configuration keys whose ...
0
votes
1answer
77 views

error calling specific strings from a List<String> Map in a bukkit config file

I'm very new to coding. I have tried everything.I can think of to try to get a list of titles that are stored in my config to be sent to the player as messages and nothing I have tried works. current ...
0
votes
0answers
53 views

java hibernate config

I have 2 classes: User and Family but cannot 'join' them (if I remove the property there is no issue) at runtime I get: SEVERE: IllegalArgumentException in class: User, setter method of property: ...
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 ...
0
votes
0answers
75 views

java config for SpringBeanAutowiringInterceptor in an MDB

I am trying to expose an MDB interface for an existing jaxws service. The jaxws implementation is wired using Spring's java configuration and I would like to reuse that for the MDB as well, injecting ...
3
votes
3answers
43 views

Overwrite Annotations with Reflection?

I'm using Oval to do validations, so we have code that looks like this: @NotNull(errorCode = "NumberInvalid") @NotNegative(errorCode = "NumberInvalid") @Range(errorCode = "NumberInvalid", ...
0
votes
0answers
98 views

Tomcat7 version.sh different from tomcat7 manager in linux mint 12

I installed tomcat7 on linux mint using : apt-get install tomcat7 apt-get install tomcat7-admin apt-get install tomcat7-docs apt-get install tomcat7-examples I changed the ...
0
votes
1answer
145 views

-server 'default' is an unknown server in the configuration file

I'm upgrading resin on a webapp and i keep getting the following error Starting Resin on Tue, 19 Feb 2013 14:46:29 -0800 (PST) [13-02-19 14:46:31.640] {main} Using Resin(R) ...
0
votes
1answer
134 views

classpath wildcard in @PropertySource

I am using Spring Java config to create my bean. But this bean is common to 2 applications. Both have one property file abc.properties but with different classpath locations. When i put explicit ...
1
vote
2answers
91 views

iBatis parameter - MaximumCheckoutTime

Does anyone have any idea about this config parameter in iBatis sqlMapConfig.xml file? MaximumCheckoutTime <property name="Pool.MaximumCheckoutTime" value="150000"/> I guess I am having ...
0
votes
1answer
343 views

Relative path to config in WEB-INF [Java Spring]

Is there a good way to load config file into ApplicationContext from WEB-INF directory using relative path? I tried using ClassPathXmlApplicationContext and FileSystemXmlApplicationContext, but the ...
2
votes
1answer
155 views

What To Add In Config.ini File In Java RCP Application To Take JRE 1.6?

I have multiple JRE installed in my machine (Jre 1.6 and Jre 1.7). I build my application with Jre 1.6. But When I launch my java RCP application, it always takes Jre 1.7. Can I add something in my ...
-2
votes
1answer
31 views

How to check current Server Name in xml file [closed]

I have a config.xml file and I want to check which server the xml file is on (from within this xml file). Using this, I want to be able to set some parameters based on the servername and which would ...
0
votes
2answers
71 views

Passing Env. into my application-config.xml

I'm currently working on a java application. The application has 3 different properties files. I want to be able to set the name of the properties file based on the name of the server the app is ...
1
vote
2answers
78 views

Managing configurations in java (inital config / save/load config)

I got a class Config wich looks like that: public Class Config { public static int someIntValue = 0; public static String someText = "some text"; } What i want to do now is saving and ...
0
votes
1answer
37 views

Struts2 {} inside a configuration

I was following a tutorial on Struts2 upon looking at its config file I saw this <package name="events" namespace="/events" extends="struts-default"> <action name="*" ...
0
votes
0answers
156 views

JDeveloper Out of memory error

I am using JDeveloper for my application. It was working fine until yesterday. I updated my CVS and when i try to build i get the below error: The system is out of resources. [javac] Consult the ...
0
votes
1answer
60 views

gwt, path to external source folder

I want include to gwt client side classes from another package, and don't want to write addition .gwt.xml. I wrote complex relative path like this: <source ...
2
votes
1answer
315 views

Using FactoryBean and DisposableBean with Spring's Java Config

The ThreadPoolExecutorFactoryBean is a FactoryBean implementing DisposableBean. When being used in Spring's XML bean definition like this <bean id="executorService" ...
0
votes
2answers
220 views

Thread-safety of calling @Bean methods from returned annonymous inner classes

Is the following test method thread-safe, assuming that this is being called from multiple threads? Sometimes the println statement displays "null". The idea is to return a map that will create beans ...
1
vote
1answer
392 views

Share eclipse/springsource tool suite server launch configurations

I have several launch configurations that I am adding to source control by saving the .launch file to my project. The project is a spring MVC webapp. The launch files have VM arguments and classpath ...
1
vote
1answer
485 views

soap response encoding '?' characters in all strings instead of russian .Net proxy, Java server(?)

I generate proxy classes with wsdl.exe to request web-services, that are probably build at java platform. The problem is with encoding of response. I get '?' instead of russian letters.(for example ...
-1
votes
1answer
60 views

Java servlets/jsp [closed]

I want to access the values from config server and set new values to config file using java/jsp/servlets . I have a list of machines whose passwords need to be reset (chnanging the password ...
0
votes
1answer
61 views

Spring example application does not take tomcat application path into account

I have trying to run this Spring example on a localhost Tomcat 7 installation. I am using cargo to depoy the war with the following coordinates: <deployable> ...
0
votes
2answers
70 views

What properties file library should I use for both arrays and strings, with simple code?

I need a Java library that can handle some sort of file configuration. I need to easily be able to store both arrays and strings to it, using the simplest code possible. I don't care if it's JSON or ...
1
vote
1answer
89 views

How I can do to read the tag value for my persistence.xml <jta-data-source> in from a file config.properties

I want to do something like this: config.properties: dsname=value; anotherValue=anotherValue; persitence.xml <jta-data-source>${dsname}</jta-data-source>
0
votes
2answers
394 views

config log4j via slf4j

we have a standalone java project using log4j for logging,and we don't config log4j via the classpath configuration. we config it in my code as bellow: String configLocation = ...
0
votes
4answers
84 views

Java Create Configuration-like File

I am using Robocode to develop GA tanks that evolve to give better performance (achieving highest fitness levels) and in order to do that I need to store information about each tank in one file. The ...
0
votes
4answers
67 views

Load methods and classes from build bath in Java

I am using Eclipse and I have got two libraries included in my project, foo.jar and bar.jar. In both JARs there is a class FooBar.java that includes the method getFoobar(Object xy). Now I would like ...
7
votes
2answers
1k views

How to config slf4j+logback in a multi-module Maven project?

My Maven project has about seven sub-modules. Six of them packages as JARs and one as WAR. Should I create individual logback.xml config in each module? Or should I have a "common" module that all ...
0
votes
1answer
121 views

Java config - dev & prod environments

I have several java projects which use hibernate to persist to a DB. At the moment, I have hibernate.properties file embedded in one persistence project. However, I would like to be able to specify ...
0
votes
1answer
385 views

Jar file: load configuration files in jar

I exported a project that reads 2 configuration files. However, when I execute the jar, it gets this error: Error: java.io.FileNotFoundException: config/dbConnection.config (No such file or ...
0
votes
4answers
128 views

Finding out java options used by Java application

Is there any way where I can find out what all java options are being used by a java application inside JVM (e.g. the ones passed through command line)? I want to find it on the fly when the ...
2
votes
6answers
473 views

NLTK fails to find the Java executable

I am using NLTK's nltk.tag.stanford, which needs to call the java executable. I set JAVAHOME to C:\Program Files\Java\jdk1.6.0_25 where my jdk is installed, but when run the program I get the error ...
2
votes
2answers
127 views

Design of a standalone class/framework requiring external data

For the sake of an example, I have a class called FileIdentifier. This class: Has the method identify which accepts a File and returns a String representing the type. Requires external data since ...
2
votes
1answer
1k views

“Connection Reset” occurs in Solr client side

We are encountering a "connection reset" error when we call the SOLR server. And our concurrent load is rather small. Here is the Tomcat connector config for SOLR: <Connector port="8983" ...
1
vote
1answer
149 views

Can I use @Import in Spring JUnit tests?

I have mutual exclusive config configuration classes in my project: Config1 and Config2, I want to select one in the unit test, like: public class Config1 { @Bean FooBean foo() { ...
2
votes
1answer
1k views

java.lang.SecurityException: Unable to locate a login configuration

I deployed an application in Tomcat and when tried to log in, it threw this error. java.lang.SecurityException: Unable to locate a login configuration ...
0
votes
1answer
230 views

weblogic java parameters

I have a web service which access 2 other web services. I need to deploy this web service but some how I need to change the urls from the others web wervices, later. My question is, how can I do to ...
0
votes
2answers
181 views

Java File Wrapper API for Simple Data Structures

I want a simple file format to store and retrieve data from disk in Java. name=value list=value1,value2,value3 this is mostly going to be used for initial config settings used at startup of the ...
2
votes
6answers
559 views

Different Spring config files for different builds

In Spring application, I set up app-security.xml to controll all the security issues. However, the production will use SSO, where as on local machine I would like the plain old user authentification. ...
6
votes
2answers
2k views

How do you create log files in log4j per program execution?

I am currently using the DailyRollingFileAppender Class in log4j to do daily log file appending but I want to have the log files separated in the following format: ...
0
votes
0answers
298 views

Unable to locate project.properties in CLASSPATH

Tech: Java smartGWT WebApplication When i run application as webapplication in eclipse i get warning === 2011-01-09 20:06:01,359 [main] INFO ConfigLoader - Unable to locate project.properties in ...
0
votes
3answers
232 views

Looking for cool java tool for loading config files

I'm quite satisfied with the default solution, but is there anything more advanced?
1
vote
1answer
386 views

Passing variables to a JRuby application via Tomcat config

What's the best way to configure variables in a JRuby application that's deployed as a WAR file? The operations group will need to configure database settings and other environment variables depending ...

1 2