Skip to content

Integrate into existing service

mattiaslevin edited this page Jun 22, 2012 · 16 revisions

To integrate the RnR-GAE-Service into your (Spring) AppEngine java web application, you need to do two things:

  1. Add the service-gae dependency to your project
  2. Create the Controller and Service beans

Add the dependency

If your project is maven-based, add the following dependency to your pom.xml:

<dependency>
   <groupId>com.wadpam.rnr</groupId>
   <artifactId>service-gae</artifactId>
   <version>1.1</version>
   <scope>runtime</scope>
</dependency>  

Create the Controller and Service beans

If your project is Spring-based, import the following into your spring context xml:

<import resource="classpath:/rnr-service.xml" />

Other configurations

TBD

Security

TDB

Principal Name fallback

TBD

Datastore Namespace

TBD

Clone this wiki locally