Skip to content

Instantly share code, notes, and snippets.

@tyama
Forked from graemerocher/boot-gorm-hibernate4.groovy
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tyama/47001579ff57521eba2c to your computer and use it in GitHub Desktop.
Save tyama/47001579ff57521eba2c to your computer and use it in GitHub Desktop.
Using GORM for Hibernate 4 in Spring Boot
@Grab("org.grails:gorm-hibernate4-spring-boot:1.1.0.RELEASE")
@Grab("com.h2database:h2:1.3.173")
import grails.persistence.*
import org.springframework.http.*
import static org.springframework.web.bind.annotation.RequestMethod.*
// curl -XPOST http://localhost:8080/person/add -F 'firstName=Tony'
// curl -XGET 'http://localhost:8080/person/greet?firstName=Tony'
@RestController
class GreetingController {
@RequestMapping(value="/person/greet", method = GET)
String greet(String firstName) {
def p = Person.findByFirstName(firstName)
return p ? "Hello ${p.firstName}!" : "Person not found"
}
@RequestMapping(value = '/person/add', method = POST)
ResponseEntity addPerson(String firstName) {
Person.withTransaction {
def p = new Person(firstName: firstName).save()
return new ResponseEntity( p ? HttpStatus.CREATED : HttpStatus.BAD_REQUEST)
}
}
}
@Entity
class Person {
String firstName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment