Jason,
actually I'm using Firefox 3.5.3pre (Shiretoko).
Your second suggestion is usefull, next time I'll try this configuration. But I think that this will be done throught the GUI and not...
Type: Posts; User: samuele.pretini; Keyword(s):
Jason,
actually I'm using Firefox 3.5.3pre (Shiretoko).
Your second suggestion is usefull, next time I'll try this configuration. But I think that this will be done throught the GUI and not...
Hi at all,
I have installed the tc server version 6.0 to try its functionalities, to try AMS functionalities an so on....
I have tried to install a web application that require two preparation...
Thanks,
I had already thought about it, but I have seen that the configuration phase is a lot vorbose, if I want to execute the same operations for all of my controllers.
Than I have...
Hi,
I'm using an HadlerInterceptor, to perform some operation before the execution of a controller.
If the preHandle operation fails I would to redirect the flow to an error view, but I can' not...
Hi,
when you use the setSessionForm(true); settings and from the browser is done a second post, using the refresh for eg., will be called the handleInvalidSubmit method. You can ovveride this and...
Hi,
as I have told in the past days, I have used Propagation.NOT_SUPPORTED settings.
But When I have deleted the @Transactionale tag from the callers class, I have seen again a starvation...
This is the Caller code:
public void doExecution(Forward forward) throws StateActionException { transactionDao.updateTransaction(forward.getCurrentState(), forward.getTransactionId());
........
This is the DAO code:
@Transactional(propagation = Propagation.REQUIRES_NEW)
public void updateTransaction(String status, String transactionId) {
TbTraTransactionCl transaction =...
Hi at all,
In my application (batch application) a have used a transaction management.
In particular I have a class in witch a method that call another method (belonging to other class, DAO...
Hi Ramnivas,
a lot of time is lapse....only today I have restarted my activity for find the solution of my problem.
I have checked the compiling option, and I use this ant task:
<target...
Hi Ramnivas,
thanks a lot for your interesting.
but I'm using AOP Alliance I have not to compile my advice, because it is used the Java Dynamic Proxy to implement the advice logic. So I not use...
Hi Ramnivas,
I can paste a snap of my bean definition xml file, so you can tell me (please) if I make some mistake,
----------------------
<bean id="recoveryAccessException"...
Hi at all,
someone of you has notice about problem with AOP on jdk 1.4.2._13 on solaris system?
I have developed an application (a batch) on my pc (windows 2000) using the same jdk. In this...
Hi at all,
I have the necessity to invoke ancd manipulate an MBean remotely through rmi protocol.
I have build a simple resource taht was been instrumented using spring MBeanExporter. To the...
Hi at all,
in my Web Application I use the WebApplicationContext, obtained from WebApplicationContextUtils.getWebApplicationContext(<servletContext>).
This context is used in the Startup...
No,no, I use the authorizationExclusions bean from the Spring BeanFactory in the StartupClass.
Samuele
Sorry for my synthesis!!
The context is a WebApplication.
I have a StartupClass that use authorizationExclusions to fullfill some data. In this class I have printed the authorizationExclusions ...
Hi at all,
I have a singleton bean that is injected into another beans that implements the MethodInterceptor interface. This is the bean-configuration file excerpt:
....
<bean...
I have generated in the Exception catch a new personalized RuntimeException, and I throw it. In this mode the pointcut match all the exception rised in my classes.
Thanks for the readers.
...
Hi at all that read this thread.
For my project I have a class that implements an interface like this:
-------------------------------------
public interface PerformedAction {
public void...
Ok, I have seen. It is really so.
Thanks a lot.
Samuele Pretini
Hi at all,
I have a new question to who have more knowledge than me :-) .
I know that in Spring 1.x, when I want to create a AfterThrowing advice, I have to implements the ThrowsAdvice...
Really, you are right.....
Reading you answer I have thought to another question:
1) In Spring 2.0 it was introduced a AspectJ pointcut syntax, and I haven't understood the difference between:...
I have followed the karldmoore indication, and now all run correctly.
Thanks for this suggestion........
I have already so any doubt:
1) Really the Worker class implements the Runnable...
Hi at all,
I'm developong a stand alone application for my client and for this task I have used a transaction features in a multithread environment. In practice I have a subsequent configuration...