Hi, I've the following bean config file, essentialy lifted from the JMX section in the online docs:
<!-- this config will grab and export any JMX annotated beans -->
<beans>
<bean...
Type: Posts; User: eoliphant; Keyword(s):
Hi, I've the following bean config file, essentialy lifted from the JMX section in the online docs:
<!-- this config will grab and export any JMX annotated beans -->
<beans>
<bean...
Hi,
I've configured spring to create a pool of proxied objects for a rule engine driver via the ProxyFactoryBean. The rule engine itself does some classloading during the execution of a rule set. ...
Hi,
We are using Spring with Tapestry for our front end. We are looking to integrate JasperReports as well. Just real quick.
Does it make more sense to create some Tapestryglue code for Jasper...
That's what I figured.
The bean in question is not using Spring's mail functionality, but I may be able to quickly refactor it to do so.
Thanks.
Forgive the alliteration :)
Is it possible to use the PropertyOverrideConfigurer to set props like the following:
...
<property name="emailProperties">
<props>
...
Yes, I understand the normal resource lookup mechanism, I think i interpreted the 'classpath*' syntax as a search.
Thanks for the clarification guys.
Problem solved, I moved the beanRefContext.xml to the default package and it's working. But I am a little confused, my interpretation of the docs was that Spring would search the classpath for the...
Hi Colin,
No I actually already had (and fixed) the beanRefFactory.xml vs beanRefContext.xml problem. Turns out reading is fundamental :) So I thought that would take care of it. But I am still...
Hi,
I am having problems getting the ContextSingletonBeanFactoryLocator to load my beanRefContext.xml, I am using spring 1.1.5.
I have this code
BeanFactoryLocator bfl =...
I am getting weird "No setter for property 'xxx' errors in class 'yyy'". For instance the 'jndiName' property is only specified in the 'xappPropertiesFile' bean def. But the validator is...
Hi,
I have a system with lots of bad JSPs rife with procedural code. I'd like to advise some of the methods in these JSPs. Was wondering if anyone had attempted this with Spring AOP.
I've...
Totally concur that it's undesirable from a best practices POV, just the reality of wiring up code that's not 'yours'. Guess we need to think of ways to support but discourage it :)
That was next :) Was checking to see if there was a 'built-in' way to handle this.
Thanks
I need to set some public fields on a 3rd party class that does not quite meet the bean spec (no setX/getX). Is it possible to do this in Spring? More specifically, can it be done via declarative...
Double Duh :)
Thanks, Rod !
Hi,
I am using the Apache Commons Pool package and attempting to setup and instance of a public inner class (org.apache.commons.pool.impl.GenericKeyedObjectPool.Config).
The spring startup...