Created
June 4, 2014 07:28
-
-
Save glaforge/c44f439974b631a384e9 to your computer and use it in GitHub Desktop.
Super lean Grails 3.0 micro-services coming!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Grab("com.h2database:h2:1.3.173") | |
import grails.persistence.* | |
@Entity | |
@Resource(uri='/books') | |
class Book { | |
String title | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Still in the middle of exploring the Grails web-micro profile. since there is no project structure like how Gradle has, I'm kinda lost. Any pointers on how should I explore even further?