Thanks a lot for your answers, seems like the consensus isn't in favor of DTOs.
Spring forums links in this subject don't work anymore... Replacing 'viewtopic.php' with 'showthread.php' in them...
Type: Posts; User: baptiste; Keyword(s):
Thanks a lot for your answers, seems like the consensus isn't in favor of DTOs.
Spring forums links in this subject don't work anymore... Replacing 'viewtopic.php' with 'showthread.php' in them...
Thanks a lot. It's getting clearer but I still have difficulty getting the whole picture. I haven't worked with Java 1.5 and these kinds of aspects before, so this explains that.
Regards,
...
Hi fellow springers,
First of all I'd like to apologize for the noise I might create. I often see my problem debated here or at other places (TSS...) but I somehow feel the need to post this...
Hi,
I work on a 3-tiered app with Java clients and a Spring/Hibernate server acessed over RMI, so your approach is of great interest to me. However, I can't figure it out with so few code. Would...
Hi,
Our company used to build its software projects on a 3-tiered architecture with a Swing client, an EJB server running session and entity beans and a database.
Last year we switched to a...
Hi all,
I use Spring 1.1.3 and Hibernate 2.1.6 under JBoss 4.0.1. I have a pretty standard architecture with a SLSB layer, a service layer and a DAO layer accessing a MySQL DB.
I have a batch...
It turned out to be a simple trace problem not related to Quartz or Spring.
Thanks for your answer and sorry for the noise.
Baptiste
Hi all,
I have a fairly simple Quartz scheduling setup: 1 trigger, 1 job. It works perfectly when I unit test my app locally, but when I deploy it under JBoss 4.0.1 (same Spring context) my job is...
I found exactly the same problem when trying to enable autowiring by name.
My context and testcases are similar to yours.
The problem arises in method populateProtectedVariables(), when trying to...
Thanks for answering and trying to understand... The system is (for the moment) distributed, but not clustered. Most of our data belongs to some production site. We have a central server offering a...
Hi,
I originally posted in the EJB forum, but it's kind of a general issue, so I end up here. I work with Spring on the client side of an EJB project: my clients use...
Hi all,
My Spring/Hibernate app is deployed under JBoss 4.0. Currently I use Spring transaction demarcation and a local SessionFactory which looks for the Hibernate configuration file:
<!--...
Hi,
I work on a distributed application in which each client (Swing-based GUI) can access several remote appservers implementing SLSBs. I'd like to leverage Spring SLSB support by using...
(sorry english spokers, french dialogue ahead)
Merci Olivier le toulousain!
Je bosse pour Alcatel Space (projet type centre de mission). J'ai pas encore tout compris à Spring: peut-on...
Hi,
I work on an project which consists of thick Swing clients remotely accessing a data server (probably an app server + SLSB + Spring/Hibernate) and a calculation server. This calculation server...
OK fine, I just found out by myself that my bean needs to implement SessionBean interface even if it derives from the Spring abstract class.
I'm gonna start from the CVS example and work it out.
...
Thanks for your answer. The remaining problem is that all methods of a Session Bean remote interface must throw RemoteException. So you still have to write XXXInterface AND XXXInterfaceRemote, whose...
BTW, is there a trick to avoid writing the business interface twice? In your example, what are the relationships between BusinessMethods and BusinessMethodsRemote?
I consider adding...
Hi all,
I'm the architect of a recently started J2EE project. We're heading towards a canonical layered architecture, with SLSBs and MDBs as facades delegating work to POJOs (services) accessing...