Re: JPA + HIBERNATE+SPRING+GWT

2010-05-18 Thread soma Gurram
I believe by default there are performence implications by using
Gilead, and i am not too sure how reliable Gilead is. So i am stuck
and finding it difficult to make a call.

Thanks
Soma G

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: JPA + HIBERNATE+SPRING+GWT

2010-05-18 Thread Frederic Conrotte
From DTO, Dozer to Gilead you have the choice:
http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html

You can also use you own filter as described in the  book Pro Web 2.0
Application Development with GWT :
http://code.google.com/p/tocollege-net/source/browse/ProGWT/trunk/src/main/java/com/apress/progwt/server/gwt/HibernateFilter.java

On May 18, 9:34 am, soma Gurram ssgur...@gmail.com wrote:
 I believe by default there are performence implications by using
 Gilead, and i am not too sure how reliable Gilead is. So i am stuck
 and finding it difficult to make a call.

 Thanks
 Soma G

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: JPA + HIBERNATE+SPRING+GWT

2010-05-17 Thread aw4y
Hi,
i use JPA + GWT with toplink libraries (http://www.oracle.com/
technology/products/ias/toplink/index.html).
No need to use DTO if your entities are serializable and follow the
RPC requirements.

regards
Stefano

On 16 Mag, 15:19, soma Gurram ssgur...@gmail.com wrote:
 Hi Guys,

 We are in the process of building web application with JPA +
 HIBERNATE+SPRING+GWT. I am having difficulties integrating Hibernate And
 GWT.

 Can any one share there experiences and a best strategy that was successful
   adopted.

 I know that  we can use GILEAD or DOZER (to copy the model to dto ), are
 there any other approaches or libraries.

 Thanks
 Soma G

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: JPA + HIBERNATE+SPRING+GWT

2010-05-17 Thread Frederic Conrotte
So you mean with EclipseLink JPA you don't have any serialisation
issue as with Hibernate ?

See this reply from the creator of Gilead as well:
http://sourceforge.net/projects/gilead/forums/forum/868076/topic/3712153

Which version of EclipseLink are you using ?

On 17 mai, 17:12, aw4y noneoft...@gmail.com wrote:
 Hi,
 i use JPA + GWT with toplink libraries (http://www.oracle.com/
 technology/products/ias/toplink/index.html).
 No need to use DTO if your entities are serializable and follow the
 RPC requirements.

 regards
 Stefano

 On 16 Mag, 15:19, soma Gurram ssgur...@gmail.com wrote:



  Hi Guys,

  We are in the process of building web application with JPA +
  HIBERNATE+SPRING+GWT. I am having difficulties integrating Hibernate And
  GWT.

  Can any one share there experiences and a best strategy that was successful
    adopted.

  I know that  we can use GILEAD or DOZER (to copy the model to dto ), are
  there any other approaches or libraries.

  Thanks
  Soma G

  --
  You received this message because you are subscribed to the Google Groups 
  Google Web Toolkit group.
  To post to this group, send email to google-web-tool...@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-web-toolkit?hl=en.

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: JPA + HIBERNATE+SPRING+GWT

2010-05-17 Thread Frederic Conrotte
After discussion with aw4y EclipseLink weaving was not activated on
his setup using the Toplink agent, therefore no issue couldn't have
happened on the client side.

See this link for more info:
http://wiki.eclipse.org/Introduction_to_Mappings_%28ELUG%29#Indirection.2C_Serialization.2C_and_Detachment

Code weaving is active by default in Hibernate, that's where Gilead is
useful.

On 17 mai, 20:07, Frederic Conrotte frederic.conro...@gmail.com
wrote:
 So you mean with EclipseLink JPA you don't have any serialisation
 issue as with Hibernate ?

 See this reply from the creator of Gilead as 
 well:http://sourceforge.net/projects/gilead/forums/forum/868076/topic/3712153

 Which version of EclipseLink are you using ?

 On 17 mai, 17:12, aw4y noneoft...@gmail.com wrote:



  Hi,
  i use JPA + GWT with toplink libraries (http://www.oracle.com/
  technology/products/ias/toplink/index.html).
  No need to use DTO if your entities are serializable and follow the
  RPC requirements.

  regards
  Stefano

  On 16 Mag, 15:19, soma Gurram ssgur...@gmail.com wrote:

   Hi Guys,

   We are in the process of building web application with JPA +
   HIBERNATE+SPRING+GWT. I am having difficulties integrating Hibernate And
   GWT.

   Can any one share there experiences and a best strategy that was 
   successful
     adopted.

   I know that  we can use GILEAD or DOZER (to copy the model to dto ), are
   there any other approaches or libraries.

   Thanks
   Soma G

   --
   You received this message because you are subscribed to the Google Groups 
   Google Web Toolkit group.
   To post to this group, send email to google-web-tool...@googlegroups.com.
   To unsubscribe from this group, send email to 
   google-web-toolkit+unsubscr...@googlegroups.com.
   For more options, visit this group 
   athttp://groups.google.com/group/google-web-toolkit?hl=en.

  --
  You received this message because you are subscribed to the Google Groups 
  Google Web Toolkit group.
  To post to this group, send email to google-web-tool...@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-web-toolkit?hl=en.

 --
 You received this message because you are subscribed to the Google Groups 
 Google Web Toolkit group.
 To post to this group, send email to google-web-tool...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



JPA + HIBERNATE+SPRING+GWT

2010-05-16 Thread soma Gurram
Hi Guys,

We are in the process of building web application with JPA +
HIBERNATE+SPRING+GWT. I am having difficulties integrating Hibernate And
GWT.

Can any one share there experiences and a best strategy that was successful
  adopted.

I know that  we can use GILEAD or DOZER (to copy the model to dto ), are
there any other approaches or libraries.

Thanks
Soma G

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.