-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
59 lines (45 loc) · 2.03 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
What is This?
==============
This Liftweb application will demonstrate how to manage
owned One-to-Many relation on Google App Engine for Java
through the JDO2 interface. The code has been based on
Derek Chen-Becker's JPADemo[1][2].
How to Try
==========
Before the compilation, a few steps are needed to be done.
1. Download appengine-java-SDK-1.2.8.zip[3] and unzip it.
Suppose you have unzipped it at '/tmp/' and you have
'/tmp/appengine-java-sdk-1.2.8' directory.
2. Replace '????' for 'sdk.dir' property in build.xml with your own.
In this example, it should be '/tmp/appengine-java-sdk-1.2.8'.
3. Set your application name on GAE/J to
'src/main/webapp/WEB-INF/appengine-web.xml' file.
Now, you are ready to run or upload this liftweb application to GAE/J.
$ mvn package
$ /tmp/appengine-java-sdk-1.2.8/bin/appcfg.sh update war
or
$ /tmp/appengine-java-sdk-1.2.8/bin/dev_appserver.sh war
Notes
=====
* Entity models are defined in com.jcraft.lift.model package.
* This program defines two models; Author and Book, and they are
detachable. Refer to those source code.
* Author includes many instances of Book.
* DetachOnClose and DatachOnCommit has been enabled by the default.
Refer to 'src/main/webapp/WEB-INF/classes/META-INF/jdconfig.xml'
* Without definitions for indexes, objects in One-to-Many relation
must not be persisted.
Refer to 'src/main/webapp/WEB-INF/datastore-indexes.xml'
* The package org.scala_libs.jdo is the scala wrapper for JDO2 APIs.
TODO
====
* By using the maven-datanucleus-plugin plugin, we will be able to
skip steps to download datanucleus-enhancer.jar file.
* org.scala_libs.jdo package should be independently released and
provided as scalajdo.
Enjoy!
Nov 06 2009
[1] http://wiki.liftweb.net/index.php/Lift_and_JPA_(javax.persistence)
[2] http://github.com/dpp/liftweb/tree/72554794896a720c237c8793ed9bd907c2269048/sites/JPADemo
[3] http://code.google.com/intl/en/appengine/downloads.html#Google_App_Engine_SDK_for_Java