forked from wicketstuff/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Google AppEngine Initializer
martin-g edited this page Jan 6, 2012
·
1 revision
Google AppEngine initializer project provides Wicket's org.apache.wicket.IInitializer implementation that auto-configures the Wicket Application to be runable at Google AppEngine.
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.
Just put wicketstuff-gae-initializer.jar in the classpath and Wicket will use it automatically.
- wicketstuff-gae-initializer
- wicketstuff-gae-initializer-examples
<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>
Apache 2.0.