Our preferred development environment is Eclipse, so as a prerequisite you must have Eclipse with GWT support installed. The installation of the GWT plugin for Eclipse is out of the scope of this tutorial and will not be discussed. Nevertheless you will need the following components :
- Eclipse from here
- GWT Plugin for Eclipse from here
- Spring framework distribution from here
- Hibernate persistence framework distribution from here
- Hypersonic database from here
- Apache commons-logging library from here
- AOP Alliance (Java/J2EE AOP Standard) library from here
- SLF4J library from here
- Apache log4j library from here
- Last but not least, download the GWT – Spring “glue” library spring4gwt from here
Enough talk, lets get our hands dirty!
- Create a new GWT project, go to File → New Web Application Project
- We will name our project GWTSpring. The base package will be com.javacodegeeks.gwtspring also use only Google Web Toolkit thus uncheck “Use Google App Engine” at the wizard window.
- /src folder contains all source files of the application
- {package_name}.client subpackage contains all source files only available to the client side of the application
- {package_name}.server subpackage contains all source files only available to the server side part of the application
- {package_name}.shared subpackage contains all source files available to both the client and server side of the application
- /test folder contains all source files for unit tests
- /war folder contains essential files for creating a valid web application
From Spring distribution
- /dist/org.springframework.expression-3.0.1.RELEASE-A.jar
- /dist/org.springframework.beans-3.0.1.RELEASE-A.jar
- /dist/org.springframework.oxm-3.0.1.RELEASE-A.jar
- /dist/org.springframework.jms-3.0.1.RELEASE-A.jar
- /dist/org.springframework.jdbc-3.0.1.RELEASE-A.jar
- /dist/org.springframework.core-3.0.1.RELEASE-A.jar
- /dist/org.springframework.context-3.0.1.RELEASE-A.jar
- /dist/org.springframework.asm-3.0.1.RELEASE-A.jar
- /dist/org.springframework.aspects-3.0.1.RELEASE-A.jar
- /dist/org.springframework.transaction-3.0.1.RELEASE-A.jar
- /dist/org.springframework.context.support-3.0.1.RELEASE-A.jar
- /dist/org.springframework.aop-3.0.1.RELEASE-A.jar
- /dist/org.springframework.orm-3.0.1.RELEASE-A.jar
- /dist/org.springframework.instrument-3.0.1.RELEASE-A.jar
- /dist/org.springframework.instrument.tomcat-3.0.1.RELEASE-A.jar
- /dist/org.springframework.test-3.0.1.RELEASE-A.jar
- /dist/org.springframework.web-3.0.1.RELEASE-A.jar
- /dist/org.springframework.web.portlet-3.0.1.RELEASE-A.jar
- /dist/org.springframework.web.servlet-3.0.1.RELEASE-A.jar
- /dist/org.springframework.web.struts-3.0.1.RELEASE-A.jar
- hibernate3.jar
- /lib/required/antlr-2.7.6.jar
- /lib/required/commons-collections-3.1.jar
- /lib/required/dom4j-1.6.1.jar
- /lib/required/javassist-3.9.0.GA.jar
- /lib/required/jta-1.1.jar
- /lib/required/slf4j-api-1.5.8.jar
- /lib/jpa/hibernate-jpa-2.0-api-1.0.0.Final.jar
- /lib/optional/c3p0/c3p0-0.9.1.jar
- /lib/hsqldb.jar
- commons-logging-1.1.1.jar
- aopalliance.jar
- slf4j-log4j12-1.5.8.jar
- log4j-1.2.16.jar
- spring4gwt-0.0.1.jar
- hibernate-jpa-2.0-api-1.0.0.Final.jar
- org.springframework.beans-3.0.1.RELEASE-A.jar
- org.springframework.context-3.0.1.RELEASE-A.jar
- org.springframework.core-3.0.1.RELEASE-A.jar
- org.springframework.orm-3.0.1.RELEASE-A.jar
- org.springframework.transaction-3.0.1.RELEASE-A.jar
Locate the web.xml file under /war/WEB-INF and add the following :
For loading the Spring context upon startup,
<listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>At the servlets section include
<servlet> <servlet-name>springGwtRemoteServiceServlet</servlet-name> <servlet-class>org.spring4gwt.server.SpringGwtRemoteServiceServlet</servlet-class> </servlet>At the servlet-mapping section include, for spring4gwt to intercept RPC calls.
<servlet-mapping> <servlet-name>springGwtRemoteServiceServlet</servlet-name> <url-pattern>/gwtspring/springGwtServices/*</url-pattern> </servlet-mapping>Things to notice here :
- The url-pattern child element of the servlet-mapping element for the springGwtRemoteServiceServlet servlet, should be changed to whatever your GWT module name is e.g. {module_name}/springGwtServices/*, the module name is defined in {project_name}.gwt.xml file (here GWTSpring.gwt.xml) located at the root of the base package of the project under /src folder
- You can change the name of spring4gwt servlet (springGwtRemoteServiceServlet here) to whatever you like
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
version="2.0">
<persistence-unit name="MyPersistenceUnit" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<properties>
<property name="hibernate.hbm2ddl.auto" value="update"/>
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
<property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver"/>
<property name="hibernate.connection.url" value="jdbc:hsqldb:mem:javacodegeeks"/>
<property name="hibernate.connection.username" value="sa"/>
<property name="hibernate.connection.password" value=""/>
<property name="hibernate.c3p0.min_size" value="5"/>
<property name="hibernate.c3p0.max_size" value="20"/>
<property name="hibernate.c3p0.timeout" value="300"/>
<property name="hibernate.c3p0.max_statements" value="50"/>
<property name="hibernate.c3p0.idle_test_period" value="3000"/>
</properties>
</persistence-unit>
</persistence>
Things to notice here :- If you intent to deploy the web application to a J2EE application server that supports JTA transactions e.g. JBoss or use other databases e.g. Oracle, MySQL etc, please see our “JBoss Spring JPA Hibernate tutorial” here for alternative configurations
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:task="http://www.springframework.org/schema/task"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd">
<context:component-scan base-package="com.javacodegeeks.gwtspring"/>
<task:annotation-driven executor="myExecutor" scheduler="myScheduler"/>
<task:executor id="myExecutor" pool-size="5"/>
<task:scheduler id="myScheduler" pool-size="10"/>
<tx:annotation-driven/>
<bean class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean" id="entityManagerFactory">
<property name="persistenceUnitName" value="MyPersistenceUnit"/>
</bean>
<bean class="org.springframework.orm.jpa.JpaTransactionManager" id="transactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
</beans>
Things to notice here :- Change the base-package attribute of the context:component-scan element to whatever is the base package of your project so as to be scanned for Spring components (services, DAOs etc).
- Change the value attribute of entityManagerFactory bean persistentUnitName property to the name of your persistent unit as dictated in the persistence.xml file
- If you intent to deploy the web application to a J2EE application server that supports JTA transactions e.g. JBoss please see our “JBoss Sping JPA Hibernate tutorial” here for alternative configurations
The DTO is an object that can be used by both the client and the server, thus you should create a “dto” subpackage under the “shared” package and place the DTO there. We are going to create an EmployeeDTO containing information for an employee like below
package com.javacodegeeks.gwtspring.shared.dto;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "EMPLOYEE")
public class EmployeeDTO implements java.io.Serializable {
private static final long serialVersionUID = 7440297955003302414L;
@Id
@Column(name="employee_id")
private long employeeId;
@Column(name="employee_name", nullable = false, length=30)
private String employeeName;
@Column(name="employee_surname", nullable = false, length=30)
private String employeeSurname;
@Column(name="job", length=50)
private String job;
public EmployeeDTO() {
}
public EmployeeDTO(int employeeId) {
this.employeeId = employeeId;
}
public EmployeeDTO(long employeeId, String employeeName, String employeeSurname,
String job) {
this.employeeId = employeeId;
this.employeeName = employeeName;
this.employeeSurname = employeeSurname;
this.job = job;
}
public long getEmployeeId() {
return employeeId;
}
public void setEmployeeId(long employeeId) {
this.employeeId = employeeId;
}
public String getEmployeeName() {
return employeeName;
}
public void setEmployeeName(String employeeName) {
this.employeeName = employeeName;
}
public String getEmployeeSurname() {
return employeeSurname;
}
public void setEmployeeSurname(String employeeSurname) {
this.employeeSurname = employeeSurname;
}
public String getJob() {
return job;
}
public void setJob(String job) {
this.job = job;
}
}
The DAO object will be used to access the database and perform CRUD (Create Retrieve Update Delete) operations. It is a server side component so it should be placed under the “server” subpackage of our project. Create a “dao” subpackage and place the DAO there. An example DAO is presented belowpackage com.javacodegeeks.gwtspring.server.dao;
import javax.annotation.PostConstruct;
import javax.persistence.EntityManagerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import com.javacodegeeks.gwtspring.shared.dto.EmployeeDTO;
@Repository("employeeDAO")
public class EmployeeDAO extends JpaDAO<Long, EmployeeDTO> {
@Autowired
EntityManagerFactory entityManagerFactory;
@PostConstruct
public void init() {
super.setEntityManagerFactory(entityManagerFactory);
}
}
As you can see the EmployeeDAO class extends a basic DAO class (JpaDAO). The EmployeeDAO class can contain specific queries concerning the EmployeeDTO object, but all CRUD operations can be handled from the basic DAO class (JpaDAO). Place the JpaDAO class at the same level as the EmployeeDAO class, under the “dao” subpackage. Below we present the JpaDAO classpackage com.javacodegeeks.gwtspring.server.dao;
import java.lang.reflect.ParameterizedType;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceException;
import javax.persistence.Query;
import org.springframework.orm.jpa.JpaCallback;
import org.springframework.orm.jpa.support.JpaDaoSupport;
public abstract class JpaDAO<K, E> extends JpaDaoSupport {
protected Class<E> entityClass;
@SuppressWarnings("unchecked")
public JpaDAO() {
ParameterizedType genericSuperclass = (ParameterizedType) getClass()
.getGenericSuperclass();
this.entityClass = (Class<E>) genericSuperclass
.getActualTypeArguments()[1];
}
public void persist(E entity) {
getJpaTemplate().persist(entity);
}
public void remove(E entity) {
getJpaTemplate().remove(entity);
}
public E merge(E entity) {
return getJpaTemplate().merge(entity);
}
public void refresh(E entity) {
getJpaTemplate().refresh(entity);
}
public E findById(K id) {
return getJpaTemplate().find(entityClass, id);
}
public E flush(E entity) {
getJpaTemplate().flush();
return entity;
}
@SuppressWarnings("unchecked")
public List<E> findAll() {
Object res = getJpaTemplate().execute(new JpaCallback() {
public Object doInJpa(EntityManager em) throws PersistenceException {
Query q = em.createQuery("SELECT h FROM " +
entityClass.getName() + " h");
return q.getResultList();
}
});
return (List<E>) res;
}
@SuppressWarnings("unchecked")
public Integer removeAll() {
return (Integer) getJpaTemplate().execute(new JpaCallback() {
public Object doInJpa(EntityManager em) throws PersistenceException {
Query q = em.createQuery("DELETE FROM " +
entityClass.getName() + " h");
return q.executeUpdate();
}
});
}
}
Finally we are going to create the service interface and implementation classes for the GWT client to access. The service interface should be accessible by both the client and the server, so it should be placed under the “shared” subpackage of our project. Create a “services” subpackage and place the service interface there. An example interface class followspackage com.javacodegeeks.gwtspring.shared.services;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
import com.javacodegeeks.gwtspring.shared.dto.EmployeeDTO;
@RemoteServiceRelativePath("springGwtServices/employeeService")
public interface EmployeeService extends RemoteService {
public EmployeeDTO findEmployee(long employeeId);
public void saveEmployee(long employeeId, String name, String surname, String jobDescription) throws Exception;
public void updateEmployee(long employeeId, String name, String surname, String jobDescription) throws Exception;
public void saveOrUpdateEmployee(long employeeId, String name, String surname, String jobDescription) throws Exception;
public void deleteEmployee(long employeeId) throws Exception;
}
Things to notice here :- GWT client has to be able to make asynchronous Remote Procedure Calls (RPCs) to the server side service. Thus the service interface must extend the RemoteService interface. An asynchronous counterpart of the specified interface must also be provided to enable asynchronous communication (see below)
- We annotate the interface so as to define the URL under which the service will be accessible. As the service is a Spring service we want spring4gwt to intercept the RPC calls and perform a Spring service invocation. To do that we define a relative path that will be handled by “springGwtRemoteServiceServlet” declared in our web.xml as shown above.
- The service name declared at “RemoteServiceRelativePath” annotation, here “employeeService”, must match the Spring service bean name. We will define the Spring service bean name in the service implementation class (see below)
package com.javacodegeeks.gwtspring.shared.services;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.javacodegeeks.gwtspring.shared.dto.EmployeeDTO;
public interface EmployeeServiceAsync {
void deleteEmployee(long employeeId, AsyncCallback<Void> callback);
void findEmployee(long employeeId, AsyncCallback<EmployeeDTO> callback);
void saveEmployee(long employeeId, String name, String surname,
String jobDescription, AsyncCallback<Void> callback);
void saveOrUpdateEmployee(long employeeId, String name, String surname,
String jobDescription, AsyncCallback<Void> callback);
void updateEmployee(long employeeId, String name, String surname,
String jobDescription, AsyncCallback<Void> callback);
}
The service implementation class is a server side component, so we must place it under “server” subpackage of our project. Create the “services” subpackage and place it there. An example service implementation class is presented belowpackage com.javacodegeeks.gwtspring.server.services;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import com.javacodegeeks.gwtspring.server.dao.EmployeeDAO;
import com.javacodegeeks.gwtspring.shared.dto.EmployeeDTO;
import com.javacodegeeks.gwtspring.shared.services.EmployeeService;
@Service("employeeService")
public class EmployeeServiceImpl implements EmployeeService {
@Autowired
private EmployeeDAO employeeDAO;
@PostConstruct
public void init() throws Exception {
}
@PreDestroy
public void destroy() {
}
public EmployeeDTO findEmployee(long employeeId) {
return employeeDAO.findById(employeeId);
}
@Transactional(propagation=Propagation.REQUIRED, rollbackFor=Exception.class)
public void saveEmployee(long employeeId, String name, String surname, String jobDescription) throws Exception {
EmployeeDTO employeeDTO = employeeDAO.findById(employeeId);
if(employeeDTO == null) {
employeeDTO = new EmployeeDTO(employeeId, name,surname, jobDescription);
employeeDAO.persist(employeeDTO);
}
}
@Transactional(propagation=Propagation.REQUIRED, rollbackFor=Exception.class)
public void updateEmployee(long employeeId, String name, String surname, String jobDescription) throws Exception {
EmployeeDTO employeeDTO = employeeDAO.findById(employeeId);
if(employeeDTO != null) {
employeeDTO.setEmployeeName(name);
employeeDTO.setEmployeeSurname(surname);
employeeDTO.setJob(jobDescription);
}
}
@Transactional(propagation=Propagation.REQUIRED, rollbackFor=Exception.class)
public void deleteEmployee(long employeeId) throws Exception {
EmployeeDTO employeeDTO = employeeDAO.findById(employeeId);
if(employeeDTO != null)
employeeDAO.remove(employeeDTO);
}
@Transactional(propagation=Propagation.REQUIRED, rollbackFor=Exception.class)
public void saveOrUpdateEmployee(long employeeId, String name, String surname, String jobDescription) throws Exception {
EmployeeDTO employeeDTO = new EmployeeDTO(employeeId, name,surname, jobDescription);
employeeDAO.merge(employeeDTO);
}
}
Things to notice here :- We use the @Service("employeeService") stereotype annotation so as to declare that this class represents a Spring service by the name "exampleService". The Spring container will instantiate all services at start up.
- We use the @Autowire annotation to inject the instance of the DAO class to the "employeeService". For proper instantiation of the service Spring container has to resolve first all potential references among services, so it instantiates the DAO class and injects the instance to the appropriate field of "employeeService" - the "employeeDAO" field. In case you wonder, the dependency injection is done according to type (Class) and if not satisfied according to name, meaning that if we have defined multiple services of the same type (Class) the one injected would be the one with the same name as the designated field.
- We use the Java annotations @PostConstruct and @PreDestroy to declare the methods that will be invoked by Spring container after initialization (all dependency injection is done) and prior destruction of the service.
- We use the @Transactional annotation for all methods that need to perform update operation on the database (INSERT, UPDATE, DELETE)
- We DO NOT use the @Transactional annotation on methods that perform retrieve (FIND) operations on the database (except for objects that contain lazily initialized references - see below), and/or perform no database operations. That is because every time you invoke a method annotated as transactional, Spring container involves in the invocation JPA's entity manager and as a consequence platform's transaction manager, so as to define the transactional behavior that will be applied, introducing a noticeable performance penalty especially for low latency / high throughput applications
- For methods that perform retrieve (FIND) operations for objects that contain lazily initialized references you should use the @Transactional annotation, designating "NESTED" propagation type in order for Spring to maintain Hibernate session open for the entire method call
- Transactional behavior is applied only on client calls to the service. Transactional behavior is not applied to intra operation calls. For example if a client invokes an operation that is not annotated as transactional and the implementation of the latter introduces a call to another operation of the same service that is annotated transactional then for the combined operations no transactional behavior will be applied
Locate the entry point of your GWT application. The file should be named like {project_name}.java, in our case GWTSpring.java, and located under “client” subpackage or our main package. Alter the entry point class as shown below
package com.javacodegeeks.gwtspring.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.event.dom.client.KeyCodes;
import com.google.gwt.event.dom.client.KeyUpEvent;
import com.google.gwt.event.dom.client.KeyUpHandler;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.DialogBox;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.TextBox;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.javacodegeeks.gwtspring.shared.dto.EmployeeDTO;
import com.javacodegeeks.gwtspring.shared.services.EmployeeService;
import com.javacodegeeks.gwtspring.shared.services.EmployeeServiceAsync;
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class GWTSpring implements EntryPoint {
/**
* The message displayed to the user when the server cannot be reached or
* returns an error.
*/
private static final String SERVER_ERROR = "An error occurred while "
+ "attempting to contact the server. Please check your network "
+ "connection and try again. The error is : ";
/**
* Create a remote service proxy to talk to the server-side Employee service.
*/
private final EmployeeServiceAsync employeeService = GWT
.create(EmployeeService.class);
/**
* This is the entry point method.
*/
public void onModuleLoad() {
final Button saveOrUpdateButton = new Button("SaveOrUpdate");
final Button retrieveButton = new Button("Retrieve");
final TextBox employeeInfoField = new TextBox();
employeeInfoField.setText("Employee Info");
final TextBox employeeIdField = new TextBox();
final Label errorLabel = new Label();
// We can add style names to widgets
saveOrUpdateButton.addStyleName("sendButton");
retrieveButton.addStyleName("sendButton");
// Add the nameField and sendButton to the RootPanel
// Use RootPanel.get() to get the entire body element
RootPanel.get("employeeInfoFieldContainer").add(employeeInfoField);
RootPanel.get("updateEmployeeButtonContainer").add(saveOrUpdateButton);
RootPanel.get("employeeIdFieldContainer").add(employeeIdField);
RootPanel.get("retrieveEmployeeButtonContainer").add(retrieveButton);
RootPanel.get("errorLabelContainer").add(errorLabel);
// Focus the cursor on the name field when the app loads
employeeInfoField.setFocus(true);
employeeInfoField.selectAll();
// Create the popup dialog box
final DialogBox dialogBox = new DialogBox();
dialogBox.setText("Remote Procedure Call");
dialogBox.setAnimationEnabled(true);
final Button closeButton = new Button("Close");
// We can set the id of a widget by accessing its Element
closeButton.getElement().setId("closeButton");
final Label textToServerLabel = new Label();
final HTML serverResponseLabel = new HTML();
VerticalPanel dialogVPanel = new VerticalPanel();
dialogVPanel.addStyleName("dialogVPanel");
dialogVPanel.add(new HTML("<b>Sending request to the server:</b>"));
dialogVPanel.add(textToServerLabel);
dialogVPanel.add(new HTML("
<b>Server replies:</b>"));
dialogVPanel.add(serverResponseLabel);
dialogVPanel.setHorizontalAlignment(VerticalPanel.ALIGN_RIGHT);
dialogVPanel.add(closeButton);
dialogBox.setWidget(dialogVPanel);
// Add a handler to close the DialogBox
closeButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
dialogBox.hide();
saveOrUpdateButton.setEnabled(true);
saveOrUpdateButton.setFocus(true);
retrieveButton.setEnabled(true);
}
});
// Create a handler for the saveOrUpdateButton and employeeInfoField
class SaveOrUpdateEmployeeHandler implements ClickHandler, KeyUpHandler {
/**
* Fired when the user clicks on the saveOrUpdateButton.
*/
public void onClick(ClickEvent event) {
sendEmployeeInfoToServer();
}
/**
* Fired when the user types in the employeeInfoField.
*/
public void onKeyUp(KeyUpEvent event) {
if (event.getNativeKeyCode() == KeyCodes.KEY_ENTER) {
sendEmployeeInfoToServer();
}
}
/**
* Send the employee info from the employeeInfoField to the server and wait for a response.
*/
private void sendEmployeeInfoToServer() {
// First, we validate the input.
errorLabel.setText("");
String textToServer = employeeInfoField.getText();
// Then, we send the input to the server.
saveOrUpdateButton.setEnabled(false);
textToServerLabel.setText(textToServer);
serverResponseLabel.setText("");
String[] employeeInfo = textToServer.split(" ");
long employeeId = Long.parseLong(employeeInfo[0]);
String employeeName = employeeInfo[1];
String employeeSurname = employeeInfo[2];
String employeeJobTitle = employeeInfo[3];
employeeService.saveOrUpdateEmployee(employeeId, employeeName, employeeSurname, employeeJobTitle,
new AsyncCallback<Void>() {
public void onFailure(Throwable caught) {
// Show the RPC error message to the user
dialogBox
.setText("Remote Procedure Call - Failure");
serverResponseLabel
.addStyleName("serverResponseLabelError");
serverResponseLabel.setHTML(SERVER_ERROR + caught.toString());
dialogBox.center();
closeButton.setFocus(true);
}
public void onSuccess(Void noAnswer) {
dialogBox.setText("Remote Procedure Call");
serverResponseLabel
.removeStyleName("serverResponseLabelError");
serverResponseLabel.setHTML("OK");
dialogBox.center();
closeButton.setFocus(true);
}
});
}
}
// Create a handler for the retrieveButton and employeeIdField
class RetrieveEmployeeHandler implements ClickHandler, KeyUpHandler {
/**
* Fired when the user clicks on the retrieveButton.
*/
public void onClick(ClickEvent event) {
sendEmployeeIdToServer();
}
/**
* Fired when the user types in the employeeIdField.
*/
public void onKeyUp(KeyUpEvent event) {
if (event.getNativeKeyCode() == KeyCodes.KEY_ENTER) {
sendEmployeeIdToServer();
}
}
/**
* Send the id from the employeeIdField to the server and wait for a response.
*/
private void sendEmployeeIdToServer() {
// First, we validate the input.
errorLabel.setText("");
String textToServer = employeeIdField.getText();
// Then, we send the input to the server.
retrieveButton.setEnabled(false);
textToServerLabel.setText(textToServer);
serverResponseLabel.setText("");
employeeService.findEmployee(Long.parseLong(textToServer),
new AsyncCallback<EmployeeDTO>() {
public void onFailure(Throwable caught) {
// Show the RPC error message to the user
dialogBox
.setText("Remote Procedure Call - Failure");
serverResponseLabel
.addStyleName("serverResponseLabelError");
serverResponseLabel.setHTML(SERVER_ERROR + caught.toString());
dialogBox.center();
closeButton.setFocus(true);
}
public void onSuccess(EmployeeDTO employeeDTO) {
dialogBox.setText("Remote Procedure Call");
serverResponseLabel
.removeStyleName("serverResponseLabelError");
if(employeeDTO != null)
serverResponseLabel.setHTML("Employee Information Id : " + employeeDTO.getEmployeeId() + " Name : " + employeeDTO.getEmployeeName() + " Surname : " + employeeDTO.getEmployeeSurname() + " Job Title : " + employeeDTO.getJob());
else
serverResponseLabel.setHTML("No employee with the specified id found");
dialogBox.center();
closeButton.setFocus(true);
}
});
}
}
// Add a handler to send the employee info to the server
SaveOrUpdateEmployeeHandler saveOrUpdateEmployeehandler = new SaveOrUpdateEmployeeHandler();
saveOrUpdateButton.addClickHandler(saveOrUpdateEmployeehandler);
employeeInfoField.addKeyUpHandler(saveOrUpdateEmployeehandler);
// Add a handler to send the employee id to the server
RetrieveEmployeeHandler retrieveEmployeehandler = new RetrieveEmployeeHandler();
retrieveButton.addClickHandler(retrieveEmployeehandler);
employeeIdField.addKeyUpHandler(retrieveEmployeehandler);
}
}
As you can see, Spring service invocations are performed just like classic GWT service invocations, transparently to the client.Finally locate the main web page for your project. The file should be named like {project_name}.html, in our case GWTSpring.html, and located under /war folder of our project. Alter the main web page as shown below
<!doctype html>
<!-- The DOCTYPE declaration above will set the -->
<!-- browser's rendering engine into -->
<!-- "Standards Mode". Replacing this declaration -->
<!-- with a "Quirks Mode" doctype may lead to some -->
<!-- differences in layout. -->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!-- -->
<!-- Consider inlining CSS to reduce the number of requested files -->
<!-- -->
<link type="text/css" rel="stylesheet" href="GWTSpring.css">
<!-- -->
<!-- Any title is fine -->
<!-- -->
<title>Spring GWT Web Application Starter Project</title>
<!-- -->
<!-- This script loads your compiled module. -->
<!-- If you add any GWT meta tags, they must -->
<!-- be added before this line. -->
<!-- -->
<script type="text/javascript" language="javascript" src="gwtspring/gwtspring.nocache.js"></script>
</head>
<!-- -->
<!-- The body can have arbitrary html, or -->
<!-- you can leave the body empty if you want -->
<!-- to create a completely dynamic UI. -->
<!-- -->
<body>
<!-- OPTIONAL: include this if you want history support -->
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
<noscript>
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled
in order for this application to display correctly.
</div>
</noscript>
<h1>Spring GWT Web Application Starter Project</h1>
<table align="center">
<tr>
<td colspan="2" style="font-weight:bold;">Please enter employee info (id name surname job):</td>
</tr>
<tr>
<td id="employeeInfoFieldContainer"></td>
<td id="updateEmployeeButtonContainer"></td>
</tr>
<tr>
<tr>
<td colspan="2" style="font-weight:bold;">Please enter employee id:</td>
</tr>
<tr>
<td id="employeeIdFieldContainer"></td>
<td id="retrieveEmployeeButtonContainer"></td>
</tr>
<tr>
<td colspan="2" style="color:red;" id="errorLabelContainer"></td>
</tr>
</table>
</body>
</html>
To compile the application, right click on the project name and select Run As → Compile GWT ApplicationTo deploy the web application just copy the /war folder in Apache – Tomcat “webapps” folder. You can change the name of the war folder to whatever you like, preferably rename it after the project name e.g. GWTSpring
To launch the application point your browser to the following address
http://localhost:8080/GWTSpring/
If all went well you should see your main web page. Two text boxes should be displayed each followed by a button. In the first text box you can save or update an employee to the database. Provide as input the id, the name, the surname, and a job description separated by a space character. Clicking on the “SaveOrUpdate” button the provided information will be stored to the database. For existing employee entries (same id) an update will be performed. The second text box is used to retrieve existing employee entries. Provide an employee id and click on the “Retrieve” button. If the employee exists you should see the employee id, name, surname and job description.
Few, that was a big tutorial!
You can download the project from here (required 3rd party libraries as described at the beginning are not included)
Hope you liked it
Justin

36 comments:
Does Spring take care of making sure that you don't get a LazyInitializationException, like if you had a collection or another object reference in there that wasn't initialized? I'd love it if it did that and took care of Spring Security exceptions automatically. Right now I use two projects to handle those: http://code.google.com/p/gwt-incubator-lib/ for Spring Security (although I had to modify the source for Spring Security 3, and Gilead (http://noon.gilead.free.fr/gilead/) for making sure the Hibernate object is clean to send down the wire. Unfortunately there's no integration between the two projects right now so I have to do Gilead's part manually. Although I haven't tried just passing the regular Spring Security exception down the line to see what happens.
For Spring service methods that perform retrieve (FIND) operations for objects that contain lazily initialized references you should use the @Transactional annotation, designating "NESTED" propagation type, in order for Spring to maintain the Hibernate session open for the entire method call. That way you will not get LazyInitializationException when accessing the lazy initialized fields.
Nevertheless LazyInitializationException will be thrown, regardless of method annotations, if you perform a call to a method that assigns a member variable with the value of an object that contains a non initialized reference, and then you try to access the non initialized reference of that member variable on any subsequent call to the same or any other method. The latter is not a good practice and should be avoided. If you want to "cache" objects you should use a second level cache. We will post a tutorial on how to integrate Infinispan with Spring so stay tuned!
Nice work done here i wud really appericiate the work thanx very much i am also a java programmer
Hello!
This is a great post/tutorial! Can I translate it to portuguese and post in another site(of course I'll link you, the original article)
[]'s
Take a look to Spring Roo. You can achieve same think but it takes you only half an hour to have a fully functional CRUD application, deployed to Google App Engine too.
Br,
Gabi
So using the @Transactional annotation will keep the Hibernate session open up through when it encodes it? What happens when it goes to encoding the object and at that point it's a PersistentBag or one of its other lazy loading classes? GWT doesn't know how to encode those, so you need something like Gilead to remove those and replace them with the regular Java List.
I have not gone through the tutorial but am looking forward to it. Another post mentioned Spring Roo. For anyone like me who is looking at the best group of technologies to do a one-man super website, the Spring Roo site noted:
"SpringSource and Google are working together to combine the speed of development of Spring Roo with the power of the Google Web Toolkit (GWT) to build rich browser apps." .
This tutorial could help developers who want to leverage Spring's new offering but don't know GWT.
spring4gwt version 0.0.1: I'm worried about its stability.
Interesting post, I would be interested to see if this works on App Engine too? I was able to run SPRING MVC on app engine, but had lot of issue with dependency jars.
Anyways..excellent tutorial, 1 up on dzone for you.
I'm also concerned about spring4gwt. I've used it in the past, but it hasn't been updated in over a year.
Good work - admirable, in fact. But I think all you've demonstrated to me is just how much boilerplate and violation of the DRY principle there is in this architecture. All that baggage is going to make it difficult to explore and prototype new business requirements rapidly.
What are your recommendations for starting with a simpler, more agile, architecture, and evolve into something like this one only if required?
Thank you all for your comments, it means a lot to us. Please forgive me for the late replies!
kjordan, you are right GWT doesn't know how to encode Hibernate lazy initialization classes so either you have to use a tool like the one you mention or you could go with DTO mapping, which is our preferred method because it enforces separation of concerns. Furthermore several tools are out there that automate Java Bean mapping
William, yes you can translate this tutorial and post it to another site. We would be grateful if you link back to us. One thing to notice though, due to Google's strict policy about duplicate content sites we would appreciate that you don't make an exact word by word translation of this article
Toi and Niel, an upcoming article will provide information on how you can integrate a second level cache to this configuration. End to End (Multiple GWT clients invoke the retrieve method of the Spring back end service and wait for the response) stress tests will also be performed and the results will be posted. I am sure that we can discuss then about the performance and stability of this configuration and spring4gwt stability
Sachin, We will extensively discuss Google's App Engine enabled configurations in future posts, so stay tuned!
Dan, i am not sure that i am following you. This architecture enforces separation of concerns, you can create a project template in just about 15 minutes and from that point on all you have to do is implement services according to your business requirements. I honestly do not see any violation of the DRY principal in the architecture except maybe the part where you have to create the "normal" and the "asynchronous" interface of the same service implementation. On the other hand the proposed architecture is extremely flexible, pluggable, and above all fast. We will show you in future posts how to achieve carrier grade performance by plugging in the appropriate key technologies e.g second level cache, asynchronous messaging etc
@Justin
Thank you. Sure I'll link this post, it is required by the readers!
Congratulations for this great post.
Hi Justin,
Search for the characters "Employee" across all the code fragments - how many times does it appear?
From a domain perspective, there should be two occurrences - Employee, and EmployeeRepository. There is also the EmployeeRepositoryImpl which ties into the persistence store.
These appear in your architecture, with EmployeeDTO is the domain object (though requiring it to be serializable is mixing in a bit of technology which violates your separation of concerns).
I'd argue that EmployeeService and its implementation is all boilerplate, just forwarding onto underlying domain objects. Interestingly, I heard a podcast with Ramnivas Laddad (the Spring AOP guy) making the same point.
Ditto for GWT front-end marshalling stuff. I'd even argue that the GUI layout, at least for a simple domain like this, is boilerplate too.
I'm not arguing that you won't eventually need all this stuff, but maintaining all these layers will slow down development and inhibit experimentation as the domain model is developed.
Hi all:
I think those are very good frameworks to make our life easy.
But we found GAE isn't for production NOW because it auto-restarting will cause the performance and user experience very BAD.
You can see more here: http://goo.gl/JAzS
Thanks very much for this good article !!!
Hi all:
I think every body who uses GAE should star this issue : http://goo.gl/juDy
-->> PLEASE HELP !!
Thank you very much~
Excellent and great effort to keep it simple!!!
Hey, I appreciate the article. I have a question: Why does the servlet mapping have to match the module name? The Spring4Gwt web site doesn't make mention of this, and it also seems that if you make your servlet take requests for "module.name.Module", then the request for module.name.Module/module.name.Module.nocache.js will be routed to it, which you wouldn't want. Thanks again!
Great tutorial, I found this very helpful. Simple and straight forward. Thanks.
Its very helpful. Thank you for sharing this article
This was extremely helpful, sorted out those awkward spring & hibernate dependency issues.
Thanx for this article!
But I'm getting the following error (I also downloaded the sample project and it didn't launch)
Error:
org.datanucleus.exceptions.NucleusUserException: No available StoreManager found for the datastore URL key "". Please make sure you have all relevant plugins in the CLASSPATH (e.g datanucleus-rdbms?, datanucleus-db4o?), and consider setting the persistence property "datanucleus.storeManagerType" to the type of store you are using e.g rdbms, db4o
at org.datanucleus.store.FederationManager.initialiseStoreManager(FederationManager.java:197)
Any Ideas?
Thanx in Advance!
HI
I tried work on about example and i am getting below listed errors in GWTCompile , any idea ?
Compiling module com.arif.GWSpring
Validating newly compiled units
[ERROR] Errors in 'file:/Users/ashaikw/Desktop/Spring/GWSpring/src/com/arif/client/EmployeeDAO.java'
[ERROR] Line 4: The import javax.annotation cannot be resolved
[ERROR] Line 15: PostConstruct cannot be resolved to a type
[ERROR] Errors in 'file:/Users/ashaikw/Desktop/Spring/GWSpring/src/com/arif/client/EmployeeServiceImpl.java'
[ERROR] Line 4: The import javax.annotation cannot be resolved
[ERROR] Line 5: The import javax.annotation cannot be resolved
[ERROR] Line 18: PostConstruct cannot be resolved to a type
[ERROR] Line 22: PreDestroy cannot be resolved to a type
[ERROR] Errors in 'file:/Users/ashaikw/Desktop/Spring/GWSpring/src/com/arif/client/JpaDAO.java'
[ERROR] Line 3: The import java.lang.reflect cannot be resolved
[ERROR] Line 20: ParameterizedType cannot be resolved to a type
[ERROR] Line 20: ParameterizedType cannot be resolved to a type
[ERROR] Line 20: The method getGenericSuperclass() is undefined for the type Class
Scanning for additional dependencies: file:/Users/ashaikw/Desktop/Spring/GWSpring/src/com/arif/client/GWSpring.java
Adding '30' new generated units
Validating newly compiled units
[WARN] Warnings in 'generated://1A1DEC8C90D3E20873979C15A7565A5C/com/arif/client/EmployeeService_TypeSerializer.java'
[WARN] Line 36: Referencing deprecated class 'com.google.gwt.user.client.rpc.SerializableException'
See snapshot: /var/folders/Th/ThtSzHzZETGUkTh7+Bt+nE+++TI/-Tmp-/EmployeeService_TypeSerializer6875772933575557936.java
Compiling 6 permutations
Compiling permutation 0...
Compiling permutation 1...
Compiling permutation 2...
Compiling permutation 3...
Compiling permutation 4...
Compiling permutation 5...
Compile of permutations succeeded
Linking into /Users/ashaikw/Desktop/Spring/GWSpring/war/gwspring.
Link succeeded
Compilation succeeded -- 38.703s
Hello all, thank you for your comments!
eXtr PM : This appears to be an issue with your persistence provider. I would suggest to Google the error since i have not used datanucleus myself and i cannot help you. It seams to be a configuration problem though.
Arif Shaikh : You must use Java 1.5 and above for the example to work. The @PostConstruct annotation is introduced in java 1.5
BRs
Justin
THANKS MAN! THAT`S A GREAT TUTORIAL...
Hello Justin Cater,
First i say thank you for your valuable post. But i am sorry i cant able to implement it successfully. I followed the steps what you said as it is. In Eclipse IDe the application is running, the page is displaying. But if i send any request to the server it throws an error.
Moreover after building the war file and deployed it in Tomcat server the server never starts because the application throws log4j error(No classdef found error).
Can you please guide me what i am doing wrong.
Thanks
Jaibabu
Hello Jai,
Try to run the application on Tomcat. Check to see if log4j library is in your WEB-INF/lib directory
BRs
Justin
Good article! Example works great! I've implemented the same in my project. Seems stable. The problem I found is - how to work with session in EmployeeServiceImpl?
First, thanks for this tuttorial.
Second, does anybody know why I get these when trying to run the example:
Starting Jetty on port 8888
[WARN] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher$WebAppContextWithReload@7aae3364{/,D:\projects\springworkspace\GWTSpring\war}
org.apache.commons.logging.LogConfigurationException: org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@16a9255c for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Category) (Caused by org.apache.commons.logging.LogConfigurationException: No suitable Log constructor [Ljava.lang.Class;@16a9255c for org.apache.commons.logging.impl.Log4JLogger (Caused by java.lang.NoClassDefFoundError: org/apache/log4j/Category))
at org.apache.commons.logging.impl.LogFactoryImpl.newInstance(LogFactoryImpl.java:543)
I have googled for the error but cannot make it work. Thanks!
I have found out the cause of the problem (see my previous entry). log4j jar needed to be added to the classpath.
Hello all,
In one of my previous comments I stated that the @PostConstruct annotation is introduced in Java 1.5 which can be misleading, @PostConstruct and @PreDestroy annotations are introduced in JEE5 (Java 1.6), sorry for the inconvenience
BRs
Justin
Hi,
i created another DTO with a OneToMany connection and if i try to start with mvn gwt:run i get the following exceptions:
NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval
Mmmh... what i can to solve this issue?
After another service which includes the error below began to appear, you know what can be?
my structure is:
server
|-dao //My daos
|-services //My impls
shared
|-dto //my dtos
|-service //my service e asyncs
WARNING: Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'contaService': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private br.com.bt.totengwt.server.dao.ContaDAO br.com.bt.totengwt.server.services.ContaServiceImpl.contaDAO; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [br.com.bt.totengwt.server.dao.ContaDAO] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [br.com.bt.totengwt.server.dao.ContaDAO] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoSuchBeanDefinitionException
Hello all,
Sorry for the late reply, I was on a short vacation!
mfreitag, JPA does not support all available functionality Hibernate provides. the "orphanRemoval" is Hibernate specific. So either switch to plain Hibernate for your persistence provider or do not use the specific functionality if you want to go with JPA, you can always perform the "orphan removal" functionality by hand.
Thadeu, Spring cannot autowire the "ContaDAO" to your "contaService". You should declare the dependent DAO in your "contaService" in a field using the same name as the one given to your DAO with the @Repository annotation. Additionally check that the DAO class is present in the build package.
BRs
Justin
Hi really nice tutorial. I'm little concern about early version of spring4gwt library, it looks like this project is not improved any more. BTW. orphanremoval is part of JPA2 specification (as element of OneToMany and OneToOne annotations) and it works with hibernate as jpa provider for me.
Nice tutorial. But why did you not include all deps in package? Alternatively putting urls for all of them (or creating maven project) would help a lot.
Regards
Post a Comment