PermGen error

Posts Tagged ‘j2ee’

Hibernate, Spring, Google Web Toolkit – Part Two

Firstly in the previous example I mentioned that you should make it a true web app with WEB-INF folders etc, this has to then be reflected in the Google compile and launch script examples given below: MyApplication.launch <?xml version="1.0" encoding="UTF-8"?> <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> <booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="false"/> <stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="com.google.gwt.dev.GWTShell"/> <listAttribute key="org.eclipse.jdt.launching.CLASSPATH"> <listEntry value="<?xml version=’1.0′ encoding=’UTF-8′?><runtimeClasspathEntry containerPath=’org.eclipse.jdt.launching.JRE_CONTAINER’ [...]

Hibernate, Spring, Google Web Toolkit – Part One

Well this tutorial aims at helping people integrate the 3 technologies of Spring, Hibernate 3with Annotations and Google Web Toolkit. Definately easier said than done. This tutorial is made using the Eclipse IDE. This assumes that you are using Postgresql as your database. Firstly a we need to get all the required stuff! The Spring [...]