Hi,
I am trying to format date fields in a JSON view returned by a @Controller but so far I was unsuccessful. I have a controller like this:
@Controller
public class SomeController {
...
Type: Posts; User: florin; Keyword(s):
Hi,
I am trying to format date fields in a JSON view returned by a @Controller but so far I was unsuccessful. I have a controller like this:
@Controller
public class SomeController {
...
Hi,
Deployment environment: Spring 2.0.3 or 2.0.7 and Weblogic 10.0.
I have a Spring xml config file called common-app-context.xml that defines an aspect as follows:
<aop:config>...
Hi,
I'm using Weblogic 10 + Spring 2 and I am trying to enable an EJB 3.0 (a SLSB) to become a Spring bean then be able to use DI and add any advice on it using Spring's AOP mechanisms, just like is...
REQUIRES_NEW would be great but this tx propagation type works only in a JTA environment and we don't have one (see...
This is an isolated place where this logic was used. I actually followed the documentation: http://www.springframework.org/docs/reference/transaction.html, section 8.4.2.
I noticed that using...
No, the solution so far was to leave the programatic tx coded-in and add a transaction aspect over this bean.
I'll give it a shot with TransactionTemplate.
Have you encountered similar behaviour to...
I'm experiencing a strange behaviour when trying to use programatic tx in a spring bean. I am using the following code over a non-transactional spring bean:
...
DefaultTransactionDefinition td =...
The code is transaction-independent and the bean that needs to be initialized in a transactional context is actually called through a MethodInvokingFactoryBean. The resulting object is injected in...
Actually I already tried using MethodInvokingFactoryBean but I have an exception saying that the init method cannot be found in the proxyied interface.
Hi,
I have a transactional bean composed of a target (beanTarget) and a service (beanService) that adds the transactional aspect (using TransactionProxyFactoryBean). There's an init-method in the...
Hi,
I have made some successful tests integrating JMX into the project I'm working on. It all looks perfect (Spring 1.0.1 + Tomcat 5) but I'm wondering if Spring's JMX component is ready for a...
Hi,
I have a properties file that I read using a PropertiesFactoryBean (I'm using Spring v.1.0.1):
<bean id="myProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
...