Is there a way to configure multiple service property values for the same key? What I'd like to be able to do is something like this:
<osgi:service-properties>
<entry key="function"...
Type: Posts; User: msqr; Keyword(s):
Is there a way to configure multiple service property values for the same key? What I'd like to be able to do is something like this:
<osgi:service-properties>
<entry key="function"...
I moved my dm server directory onto the same hard drive partition as my STS workspace, and the problem went away. Not sure if the partitions were the cause of the problem or not, but in my original...
I'm trying to run dm 2.0.0.RELEASE within STS 2.3.0.RELEASE as outlined in the Greenpages 2.1 sample. I can deploy the sample manually into the pickup directory and the app runs without problems, but...
I think this is related to
http://jira.springframework.org/browse/OSGI-747
which I just uploaded an example patch that allows configuring service properties as described on this thread.
Yes, I understand the intention of managed service factories, I would just like to be able to attache service properties to the services created by the factory.
In my situation, my managed service...
Hello, I was following the instructions at
http://www.springsource.org/node/360
but there seem to be some missing dependencies, as the core and web projects won't compile from the following...
In Spring DM 1.2 is there any way to configure service properties on a managed service factory so they are applied to each service that is registered? Something like this:
...
The trouble is I don't know a way to find out JBoss' agentId. I think the issues still comes back to the way JBoss integrates into the Java 5 platform MBeanServer. Since to do this you have to use...
Nor did I suggest that. I'm merely saying that the way JBoss 4.0.3 integrates the JDK 1.5 platform MBeanServer with it's own implementation has some twists that I need to work around.
I...
I found the problem for me, it had to do with two MBeanServer's being created. I had a class that contained
private final MBeanServer mbeanServer =...
I'm trying to get my application's Spring-exported JMX beans to show up in both jconsole and in the JBoss JMX console under Java 1.5. To that end, I've configured JBoss to use the platform...
Sure, the stack trace is below. Note that this same bean defined in my xyz-servlet.xml works correctly, i.e. the ${xslt.cache} property gets replaced by the proper boolean value from the defined...
Hello,
I just ran into an issue of trying to use a placeholder property in my views.xml configuration file. Even if I define a...
Done:
http://opensource.atlassian.com/projects/spring/browse/SPR-730
You are absolutely correct about breaking compatibility... but I thought keeping the class simple might be desirable, too :D
I've been working with the AbstractXsltView class along with using JAXB for rendering XML objects. I would have liked to extend the AbstractXsltView class and make a few simple changes to use a...
I'm having a similar problem where I have an AfterReturningAdvice implementation to index objects after they are inserted into a database via Hibernate. With logging enabled I've followed the chain...
I'm using 1.1.4.
I'm trying to set a view class map property value with the following:
parentView.marshallerProperties[com.sun.xml.bind.namespacePrefixMapper]=jaxbNamespacePrefixMapper
But I get an exception...
I need to send emails after certain events in my application, and in those emails include a URL that points to an application URL. For example, when a user registers for an account, I send them an...
What I mean is can you use two definitions of the same wizard form class, each using a different command name. Sort of like this:
<bean name="addIngredientForm"...
Is it possible for you to use different command names for your two form controllers instead of using the default of 'command'? Then the session keys will be different for each one since the session...
For me at least suppressing validation does not mean I want to suppress binding. I do not want to lose any changes a user might have made to the form. My scenario is something like this:
1) a...
I have a wizard-based form that I would like to be able to submit a "refresh" of the current page to re-load reference data but not perform any validation. This would be similar to the...
I was wondering if Spring might perhaps better support "paged" validation as it arises from paged data entry controllers (eg. AbstractWizardFormController)... for example an interface like
...
I'd like to do this with the ResourceBundleViewResolver, but as far as I can tell only the UrlBasedViewResolver has this requestContextAttribute field. I could of course extend the...