0
votes
0answers
60 views

Integrating Constretto 2.0 with Spring 3.2

I'm trying to use constretto (2.0.4) with Spring 3.2.3.RELEASE. My applicationContext.xml file: <beans default-lazy-init="true" xmlns="http://www.springframework.org/schema/beans" ...
2
votes
1answer
171 views

Spring : Exception starting filter springSecurityFilterChain

I am trying to write an application using Spring 3.1.2-Release. App server is Tomcat 7. When I start the server I get this error : SEVERE: Exception starting filter springSecurityFilterChain ...
0
votes
1answer
103 views

Set active spring profile from pom.xml and integration with IDE

I work on mavenized Java Spring web application. We are using extensively auto-restart & hot-deploy in Eclipse IDE, but i noticed that integration within Eclipse is not good when you start to mix ...
2
votes
2answers
688 views

Spring loading PropertySourcesPlaceholderConfigurer from JBoss context

I have a spring 3.1 application loading settings using PropertySourcesPlaceholderConfigurer and I want to manage test and production environments simply loading settings from server context overriding ...
0
votes
2answers
149 views

spring where to store xml config files

I'm developing a spring project and I've just encountered serious problems with loading XML config files within junit (but they are accessible from the web controllers) - can't load XML files. I ...
1
vote
2answers
2k views

Dynamically loading properties file using Spring

I have written a PropertyUtils class (from internet), which will load the Properties <bean id="propertiesUtil" class="com.myApp.PropertiesUtil" > <property name="locations"> ...
0
votes
2answers
166 views

How to load an external property file in Hadoop

I have a hadoop job which includes some spring beans. Also, in the spring context file, there is a PropertyPlaceholderConfigurer named app.properties. This app.properties is within the jar file, the ...
0
votes
1answer
144 views

Spring.NET using multiple PropertyPlaceholderConfigurers isn't working

I'm trying to use two property placeholder configurers, with one of them for retrieving the values base64 decoded. The problem I am having is that only one of them is loading properties into the ...
1
vote
0answers
210 views

How to deploy MessageBus in Liferay?

Written in Liferay Documentation 6.1 on using Message Bus, Configuration of Message Bus is done using the following files: WEB-INF/src/META-INF/messaging-spring.xml - Specifies your ...
1
vote
2answers
473 views

Spring bean scope Tenant cannot be resolved by Intellij

My Intellij IDE tells me that the scope "tenant" of my Bean Definition cannot be resolved. Although it doesn't stop me from deploying and running my application, it looks kinda messy. Is there a way ...
0
votes
1answer
53 views

Machine-specific webapp configuration

I have several webapp projects (Java/Spring/Tomcat). Each project will be deployed on several machines as a .war file. I need to have separate .properties file for each project on each machine. How to ...
2
votes
3answers
2k views

Controlling a project with Maven and Spring: How to set Spring config file using Maven profiles?

I am trying to configure a Spring configuration file with database information based on whether a certain Maven profile is active. I've seen pieces of answers to this but I'm having trouble putting ...
0
votes
5answers
3k views

Spring loading application.properties based on tomcat servlet contect definition

I need to have a development and production settings for our spring project. I understand that you can use profiles for spring but that is not something that we can do. What I want to do is place on ...
0
votes
2answers
1k views

Internationalization in spring 3.1.2 using annotation not working

I am using spring 3.1.2 MVC. I am trying to configure web application by annotations Here I want to implement internationalization for that I am using LocaleChangeInterceptor , ...
2
votes
1answer
142 views

Where to put application level beans in Spring MVC?

Where to put application level beans in Spring MVC? Into root-context.xml or into servlet-context.xml?
4
votes
1answer
686 views

Is it possible to use a spring configuration XML file per jar file with additional info?

My main Spring Configuration XML file specifies something like this: <context:component-scan base-package="com.application" /> The components found during this scan can be in one of many jar ...
4
votes
1answer
342 views

When using Jaspyt to encrypt Spring properties files, is an environment variable really a secure place to store the master password?

I'm using Jaspyt and Spring 3 in my Java project. I currently store the database connection properties in a properties file. The user name and password are plain text, so I've been looking at using ...
0
votes
2answers
43 views

Is it easy to find classes/methods refereces in IDEs that suppport Sping

I have years of Java experience on Eclipse and now would like to get my feet wet with Spring. After read some tutortials I have such a question: is it easy (or even possible) to find classes/methods ...
0
votes
1answer
475 views

spring configuration file validation

I've noticed this behavior in the processing of spring configuration files. I have 2 errors in my config file: one syntax (well format) error, say a mispelled closing tag (tryed with "html" tag) a ...
0
votes
1answer
82 views

spring applicationConfig beans node

In the spring configuration file applicationConfig.xml, the root node is beans. But it doesn't contain only beans. In fact, security configuration requires an http element. My question is: while ...
2
votes
3answers
756 views

What are possible lightweigth Java configuration libraries for handling complex configuration?

I have a need for processing a relatively complex set of configuration parameters for a java application. The requirements are roughly: Nested configuration values with lists, maps, etc. - not just ...
0
votes
2answers
899 views

Spring, autowire @Value from a database

I am using a properties File to store some configuration properties, that are accessed this way: @Value("#{configuration.path_file}") private String pathFile; Is it possible (with Spring 3) to use ...
1
vote
1answer
805 views

Use a Spring XML entity to set a property in an Annotated File?

I have a Spring MVC Controller class that needs a property set from a config.properties file. I was thinking that since I already use this config file to set some db properties, I could access it in ...
9
votes
2answers
15k views

Can Spring Parse and Inject Properties Files?

I already know how to: Load properties files into my Spring configuration using: <context:property-placeholder location="aaa/bbb/ccc/stuff.properties"/> Build properties objects on the fly ...