If you want to have a distributed transaction, you need a double side commit between 2 transactionnal contexts. Accessing data from a Jdbc, JMS or RMI server is usually done in a transactionnal...
Type: Posts; User: etienno; Keyword(s):
If you want to have a distributed transaction, you need a double side commit between 2 transactionnal contexts. Accessing data from a Jdbc, JMS or RMI server is usually done in a transactionnal...
Hi all,
I have a performance issue in production related to the usage of Spring AOP. The problem is related to the session bean creation having a Annotation/AOP marker...
Hi,
I have a strange issue with Spring AOP. We have done a monitoring annotation using Spring AOP to be put on a method to monitor the performance. On production, we have a system hang because of...
The question about exception handling is quite important IMHO. I have build a little process in Spring implementing the Fault Barrer. When I have some time, I will describe it here.
The main idea...
Hi Constantine, thanks for your answer. And I am following you 100%. I know there's probably an issue to let Services load any DAOs, and not only Services. I agree that separating functional...
What about chapter 23 of the spring documentation?
http://static.springframework.org/spring/docs/2.5.x/reference/scheduling.html#scheduling-task-executor
Hi Constantine,
you post is very interesting. I understand your point and would like to agree with it.
I agree totally with the configuration isolation of "common and transversal components"...
Maybe you can check this page to see how much Spring AOP will affect your system: http://docs.codehaus.org/display/AW/AOP+Benchmark
You will find other way to add AOP (AspectJ, etc). The number...
My mistake. I mixed delegation, "Business Delegated" accessing the Business Service and Strategy pattern. I do need some time to read back my patterns to make that clear.
Yes, I means "inheritance encapsulation" opposed to delegation.
I am planning to propose a straight: (view)/business/persistence layers using Annotated transaction and Spring as the overall glue.
Thanks Shahnawazshahin, I have been out of this forum because I have took some time to rapidly analyze all eclipse projects (36 projects for 25 applications) for a total of 3000+ not-generated Java...
Thanks Constv, theses discussions are really awesome!
Thanks wexwarez, I will add this to my argument...
I would do this kind of separation for the eclipse projects materializing the design layers. You can add more projects if you want (external service, etc).
Theses are the bases:
1- Web: The...
Hi,
I am a experienced Spring and Hibernate user. I have build many applications using this well used separation of concern :
View (jsf, struts, other)
|-view beans (session scoped)...
Hi,
could you (or anyone) send some xml code (face config, app context of spring, web.xml) that you use for this integration? I am very interested about this integration Spring 2.0 and JSF (I am...
OK found my mistake.
I have made it work, i have put the need -D in the Tomcat Eclipse starter (Sysdeo) under the Tomcat JVM parameter (not in the catalinastart.bat as I thaught).
...
Hi,
I am trying to make a simple working JMX example with Tomcat 5.5, MC4J 1.2b9.
I have put a simple Spring applicationContext file with this taken from the Spring JMX tutorial (with the...
Using Spring Remoting as a Session Facade, does not look accurate for me. Spring Remoting, should be normally implemented as a stateless facade, not in a statefull manner. As far as I know, the...
Hi,
I am not an expert in web service, but I have used Spring since a year for many j2ee project. I would like to know if I can use Spring for writing web services. I have 2 projects on the...
Thanks for your answer. I will check the CVS sandbox (do you mean some sandbox code in the CVS of Acegi?).
We are using WAS 4.0.6 (IBM jre1.3.1). And the latest Spring.
I was thinking to...
Hi,
I have a small architectural question to ask. I have the mandat to "securize" a J2EE web Application (an application that still use EJB and EJB security). I have start to "Spring-nified" the...
Can I use ACEGI with JRE 1.3.1 and JSP 1.1 like WAS 4.0.6?
I understand I cannot use the javax.servlet.Filter class, but can I use the authentification taglib?
Thanks
Etienne.
Hi,
I have a small architectural question to ask. I have the mandat to "securize" a J2EE web Application (an application that still use EJB and EJB security). I have start to "Spring-nified" the...
This is exactly was I was searching for!
Is there any drawback to this solution? Like initialising too much beans?
If I understood you correctly, it will auto-wire all bean set on the same...