Hi all,
is there a way to advise not managed Spring beans?
I heard that aspects are woven in three way: compile time, classload time and runtime.
Do I use another compiler or classloader to...
Type: Posts; User: Ghed; Keyword(s):
Hi all,
is there a way to advise not managed Spring beans?
I heard that aspects are woven in three way: compile time, classload time and runtime.
Do I use another compiler or classloader to...
I found it!
Grazie
Grande Enrico! ;)
I've read the reference before to post the previouse one, but I didn't find nothing about it!
Where can I find it?
Thanks
Hi All!
I am going to integrate Spring AOP in a project of mine.
My question is: how can I intercept the return value of a "foo"method and pass
it as parameter for the method "afterFoo"?
e.g....
As you said, it was a set up issue.
I fixed it.
Thanks
Hi!
I have a web app secured with Spring Security and it works well. Now I am trying to deploy it in 2 tomcat instances and to balance them with Apache.
There is an issue! Here is the operation...
Any ideas?
And one more question: can I use a local WSDL? e.g. Can I pack the WSDL document in a jar of client?
Hi,
I am trying to consume an existing web service using JaxWsPortProxyFactoryBean.
It works, but now I need to use https.
At the moment I switched the property "wsdlDocumentUrl" to https:
...
I've done this.
FYI, this is the right code:
${sessionScope["SPRING_SECURITY_LAST_EXCEPTION"].message}
Bye :)
Hi all,
I am doing a custom login page, so I've already set the
<form-login login-page="/login.jsp" />
At the moment the page is not able to show authentication exception, so,
I've tried to...
MMmm, I don't agree with you.
I think that you've always define the multipart resolver, also with annotations.
Anyway, I have had defined the multipart resolver.
The trick is this:
Actually...
Hi!
How can I upload a file without annotated controllers?
With annotated controller all works nicely, but without I can't get the parameter "file". Why?
It seems that with annotations the...
Hi Enrico, thanks for you quick reply!
What DWR version are you using? is the 3.0 rc1?
It seems that is simplier to reference DWR beans with annotations than that using the dwr:remote or...
Hi all!
Does it exist an official or "de facto" library well integrated with Spring?
I used to integrate DWR in my apps, but DWR seems to be stuck to version 2.0 so I am looking for something...
Perfect!
AuthenticatedVoter class is what I was looking for! And now, thanks to you, I understood better the task of Voter classes.
The usage of tags simplifies the configuration .. but, I need to...
Hi ALL!
One simple question: where do I find info about this tag/bean?
What kind of bean does it create?
I want to know which kind of property can I set, such as:
IS_AUTHENTICATED_REMEMBERED,...
Hi all!
I wish to switch from DWR to GWT because DWR project seems inactive for a long time.
So, I am planning to use a "standardized" AJAX solution and GWT seems to be the best.
I have some...
Ah ok, now is clear.
Now I guess that splitting the ROOT loaded by ContextLoaderListener and placing the tx:annotation-driven in one and the service in another has the behavoiur that I expect.
...
Yeah, you got it.
My service bean was in the dispatcherservlet file and the tx:annotation-driven in the applicationContext.xml.
Why do you name parent/child context? I have a different vision! I...
Hi Marteen!
Finally I found out the isse .. and listen man, could it be a bug?
If I place the service bean in the file with the <tx:annotation-driven> tag all goes ok, while if I place it in...
how can I check if I have 2 instances for my service? are you telling that I have 2 instances, right?
Hi Marten,
I am sure that I am using only one istance, because:
<bean id="dwrTestController" class="com.movenda.omadm.web.DwrTestController">
<property name="groupService"...
Hi All!
I successfully deployed my new web app with Spring 2.5 + Hibernate 3 support.
The main issue is that I cannot delete or update, while I can read data.
I tried to investigate and it...
is that all?
I am looking for some examples ...
I found this book:
"The Definitive Guide to GigaSpaces: Scaling Spring for the Enterprise"
Does anyone know it?
What do I need to scale...
Hi All!
I am spending a few trying to understand how migrate an ejb based app to a spring based one.
Suppose I have an EJB for business logic: the first step is to rewrite it as a POJO managed...