Questions tagged [spring-4-gwt]

GWT Spring brings Spring's proven, simple dependency injection (DI) principles to your GWT project. It allows for transparent, automatic access to Spring beans as top level services from GWT Client code

GWT Spring brings Spring's proven, simple dependency injection (DI) principles to your GWT project. It allows for transparent, automatic access to Spring beans as top level services from GWT Client code without extra servlets or the boilerplate RPC wrappers that are frequently needed for effective Spring/GWT integration. Most importantly, GWT Spring is implemented with a lightweight vanilla Java servlet not requiring any additional dependencies like Spring MVC to function.

Currently Java 5+, GWT 1.6.4+, and Spring 2.5+ are officially supported though many features may work with other versions.

6 questions
2
votes
1 answer

null pointer exception from Session

I'm using spring4gwt in my project. I have the following login service implementation: @Service("loginService") public class LoginServiceImpl extends RemoteServiceServlet implements LoginService { @Override @Transactional(propagation =…
Majid Laissi
  • 19,188
  • 19
  • 68
  • 105
1
vote
2 answers

Best way to integrate GWT with existing Spring services?

I know is likely that this question has been asked many times before. I've googled a lot but I still don't have a clear answer, and I'm getting crazy. I have to start a new project which consists of creating the GUI layer using GWT of a backend…
1
vote
1 answer

spring4gwt error:Spring bean not found: querySenior

I am trying to make gwt-2.7 work with spring-4.2.3.Configurations are: web.xml contextConfigLocation
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
0
votes
2 answers

How to make spring4gwt export more than 1 service?

I successfully follow GWT and spring4gwt's tutorials and transform the StockWatcher's demo into a Spring(3.0) enabled service , by the following configurations : web.xml :
smallufo
  • 11,516
  • 20
  • 73
  • 111
0
votes
1 answer

gwt +Spring 3+Jpa org.springframework.beans.factory.BeanCreationException

I am trying to integrate Spring 3,Jpa and Gwt using Spring4gwt , but I am getting an exception while spring tries to create a Bean , my xml and the error stack trace below: Note :I am not using maven applicationContext.xml
fnando
  • 43
  • 1
  • 8
0
votes
0 answers

the rpc call doesn't workd after adding spring4gwt

To integrate spring in my gwt application i added spring4gwt and i followed the tutorial in SimpleRPCExample. But it doesn't work, however everything in configuration and code seems OK. So this what i put in application context to scan servlets…