Forked from graemerocher/boot-gorm-hibernate4.groovy
Last active
August 29, 2015 14:18
-
-
Save tyama/47001579ff57521eba2c to your computer and use it in GitHub Desktop.
Using GORM for Hibernate 4 in Spring Boot
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("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