Hi,
no I didn't solve the problem, but I didn't want to cross-post. I guess it's an application-context related problem since the application works fine until I try to refresh the context, which...
Type: Posts; User: Jakob O.; Keyword(s):
Hi,
no I didn't solve the problem, but I didn't want to cross-post. I guess it's an application-context related problem since the application works fine until I try to refresh the context, which...
Hi,
if I remember correctly the deserialization support comes with spring 3.x, you can however add a naming interface with the readResolve-method and implement your own aspect. I did that once,...
Hello Community,
I wanted to ask for a best-practice / recommendation how you handle code that should only be invoked after a successful transaction with declarative transaction management. As far...
Gentle bump. Should I probably rather ask in the "Data"-Forum than here?
Hello,
I think it's a matter of sequence. In my test-suites I always run tests with full application contexts prior to tests with reduced contexts.
Hope this helps
Jakob
Hello community,
I wanted to reload the spring configuration from within my web-app and used:
ServletContext ctx = JsfContextUtils.getServletContext();
ConfigurableApplicationContext appCtx...
SOLVED: When I updated my spring libraries I also updated aspectj to 1.6.5. Downgrading the aspectj libraries by micro version it now seems to work fine with aspectj 1.6.1.
Hello community,
I...
Hello community,
I just wanted to let people know about a pitfall I ran into and hope to save someone some time. Spring version is 3.0.
If you use @Configurable annotations and load time...
SOLVED: Failed miserably to read the documentation for programmatic transactions... Sorry
Hello community,
I am looking for advice / best practice on how to test my service layer. I am aware...
Hello community,
I started to pull login / logout logic into my user object (authentication, logging, etc.). Therefore I wrote my own AnonymousProcessingFilter that does a anonymousLogin()-Call to...
No I didn't solve the problem, yet, other than downgrading as stated in the post above.
Not really, I had issues too, when using a -javaagent parameter with the spring-agent.jar the dependency injection didn't work, if I use aspectjweaver.jar similiar errors occured simtime (I think...
Hello community,
I have a spring-hibernate application and have trouble with the @Configurable annotation used to inject beans into domain objects. Since i had to update spring (now version 2.5.6)...
Hi there,
after a while I finally managed to get it working, the only pitty is that I end up with an exception page because somwhere the Exception is wrapped in A ServletException without a cause....
Yes I'd prefer this method over my current one, but it's too late for this project. We managed to use ajax by modifying the FlowExecutionListener and using an AbstractAjaxAction called in the...
Nice, unfortunately we have already switched to SWF actions for this purpose :(
But next time I'll check out that variant.
Jakob
Help!
I guess that
is a typo and should be 'RequestParameterFlowExecutorArgumentHandler'.
I could need a litle help to register my 'RedirectArgumentHandler'. How do I set up the
Hi there,
I am in need of a ServiceLocator myself for the following reasons:
I want to be able to retrieve services without caring of my context (web, local, remote, whatever...).
Because I...
Hi james,
my problem is that there should NOT be a session, unless the binding in the HibernateFlowPhaseListener is buggy.
My understanding of the session per conversation is:
if the...
Hi there,
I ported back the HibernateFlowExecutionListener from swf 2.0m3 to 1.05 backport. It solved some lazy loading issues, but I am experiencing some problems now. I receive an error if I want...
Omg 2.0M3 FlowListener has another signature than 1.05. No wonder it didn't work ;) Backport for the lazy ones:
/*
* Copyright 2004-2007 the original author or authors.
*
* Licensed under...
Thank you Jeremy, though this post is old, I wanted to say: You saved my day! :D
I extended the solution and wanted to share it.
AjaxFlowPhaseListener:
package caravanmanager.ui.jsf.context;
import org.ajax4jsf.renderkit.AjaxRendererUtils;
import...
I set the OpenSessionInViewFilter logging to debug and it seems that it opens a session, but I get an LIE anyway :(
I also tried to call person.getAddresses() in the loadObject - method to force...
Hi,
I have a scenario where I select an object in a list, which will result in displaying an edit-view.
From the edit view there is the possibility to launch a subflow, which will end back in the...