Skip to content

jbloemendal/play-hippo

Repository files navigation

PlayHippo Service Module

The service module wraps Hippo CMS 10.2.0 dependencies and provides a singelton helper tool class PlayHippoTool.java with which you can access Hippo repository using HST ContentBeans.

Add hippo service module dependency (build.sbt):

resolvers += (
  "Play Hippo Repository" at "http://jbloemendal.github.io/play-hippo/releases/"
)

libraryDependencies ++= Seq(
  "org.onehippo" % "playhippo_2.11" % "1.1",
  ...
)

Configure your repository (conf/application.conf)

hippo.rmi.uri = "rmi://localhost:1099/hipporepository"
hippo.rmi.user = "admin"
hippo.rmi.password = "admin"

Enable rmi connections

http://www.onehippo.org/library/concepts/content-repository/repository-deployment-settings.html

PlayHippoTool Usage

See PlayHippoTool.java and HippoController.java.

https://playframework.com/
http://www.onehippo.org/
http://blog.jbloemendal.com/2016/05/integrating-play-framework-hippo-cms.html