Skip to content

Google AppEngine Initializer

martin-g edited this page Jan 6, 2012 · 1 revision

GAE Initializer Project

What ?

Google AppEngine initializer project provides Wicket's org.apache.wicket.IInitializer implementation that auto-configures the Wicket Application to be runable at Google AppEngine.

Why ?

Google AppEngine has many restrictions which prevent using many functionalities from the JDK - such as Threads, AWT/SWING, extending serialization, etc. For this reason your Wicket application should avoid using these functionalities.

Installation

Just put wicketstuff-gae-initializer.jar in the classpath and Wicket will use it automatically.

Maven Artifacts

  • wicketstuff-gae-initializer
  • wicketstuff-gae-initializer-examples

Documentation

Maven Stable

<dependency>
    <groupId>org.wicketstuff</groupId>
    <artifactId>wicketstuff-gae-initializer</artifactId>
    <version>[YOUR WICKET VERSION HERE]</version>
</dependency>

<repository>
	<id>wicketstuff-core-snapshots</id>
	<url>https://oss.sonatype.org/content/repositories/snapshots</url>
	<snapshots>
		<enabled>true</enabled>
	</snapshots>		
</repository>

License

Apache 2.0.

Author

Martin Grigorov

Clone this wiki locally