grails basics part2

Post on 17-May-2015

436 Views

Category:

Technology

3 Downloads

Preview:

Click to see full reader

DESCRIPTION

Basics in grails: Groovy server pages Taglibs Validators in grails

TRANSCRIPT

Grails Basics 2

By: Saurabh Dixit

Agenda:

Groovy server pages Taglibs Validators in grails

Groovy Server Pages

View pages with the extension gsp, gsp stands for groovy server page

All default groovy tags along with custom tags defined in the tag lib can be accessed in these pages.

Tag Libraries:

Tags can be created inside taglib folder in grails:

class WidgetsTagLib {

static namespace = “appTags"

ApplicationContext applicationContext

/** * Extends the regular grails pagination */def paginate = { attrs ->// DO some operation }

Tags inside taglib can be accessed on the GSP pages through the name space:<appsTags:paginate/>

appsTags: Name space defined in the tag libPaginate: Method in the file

Validators in grails :

Declaring Constraints: Within a domain class constraints are defined

with the constraints property that is assigned a code block:

class User { String login String password String email Integer age static constraints = { … }}

You then use method calls that match the property name for which the constraint applies in combination with named parameters to specify constraints:

class User {...static constraints = {login size: 5..15, blank: false, unique: truepassword size: 5..15, blank: falseemail email: true, blank: falseage min: 18}}

In that example we've declared that the login property must be between 5 and 15 characters long, it cannot be blank and must be unique. We've also applied other constraints to the password, email and age properties.

By default, all domain class properties are not nullable (i.e. they have an implicit nullable:false constraint).

A complete reference for the available constraints can be found in the Quick Reference section under the Constraints heading.

class User {...static constraints = {// this Date object is created when the constraints are evaluated, not// each time an instance of the User class is validated.birthDate max: new Date()}}Custom validator:class Response {…static constraints = {survey blank: falseanswer blank: false, validator: { val, obj -> val inobj.survey.answers }}}

Validating Constraints: Call the validate method to validate a domain class

instance:def user = new User(params)if (user.validate()) {// do something with user}else {user.errors.allErrors.each {println it}}

The errors property on domain classes is an instance of the Spring Errors interface. The Errors interface provides methods to navigate the validation errors and also retrieve the original values.

Validation Phases:

Within Grails there are two phases of validation, the first one being data binding which occurs when you bind request parameters onto an instance such as:

def user = new User(params)

At this point you may already have errors in the errors property due to type conversion (such as converting Strings to Dates). You can check these and obtain the original input value using the Errors API:if (user.hasErrors()) {if (user.errors.hasFieldErrors("login")) {println user.errors.getFieldError("login").rejectedValue}}

The second phase of validation happens when you call validate or save. This is when Grails will validate the bound values againts the constraints you defined.

For example, by default the save method calls validate before executing, allowing you to write code like:

if (user.save()) {return user}else {user.errors.allErrors.each {println it}}

Importing Constraints: Grails 2 introduced an alternative approach to sharing

constraints that allows you to import a set of constraints from one class into another.

Let's say you have a domain class like so:class User {String firstNameString lastNameString passwordHashstatic constraints = {firstName blank: false, nullable: falselastName blank: false, nullable: falsepasswordHash blank: false, nullable: false}}

You then want to create a command object, UserCommand, that shares some of the properties of the domain class and the corresponding constraints. You do this with the importFrom() method:

class UserCommand {String firstNameString lastNameString passwordString confirmPassword

static constraints = {importFrom Userpassword blank: false, nullable: falseconfirmPassword blank: false, nullable: false

}}

If you want more control over which constraints are imported, use the include and exclude arguments.

Both of these accept a list of simple or regular expression strings that are matched against the property names in the source constraints.

So for example, if you only wanted to import the 'lastName' constraint you would use:

…static constraints = {importFrom User, include: ["lastName"]…}

or if you wanted all constraints that ended with 'Name':

…static constraints = {importFrom User, include: [/.*Name/]…}

Validation on the Client: Displaying Errors:▪ Typically if you get a validation error you

redirect back to the view for rendering. Once there you need some way of displaying errors.▪ Grails supports a rich set of tags for dealing

with errors.▪ To render the errors as a list you can use

renderErrors:<g:renderErrors bean="${user}" />

If you need more control you can use hasErrors and eachError:<g:hasErrors bean="${user}"><ul><g:eachError var="err" bean="${user}"><li>${err}</li></g:eachError></ul></g:hasErrors>

Applying Validation to Other Classes: Domain classes and command objects support

validation by default. Other classes may be made validateable by

defining the static constraints property in the class (as described above) and then telling the framework about them.

It is important that the application register the validateable classes with the framework. Simply defining the constraints property is not sufficient.

The Validateable Annotation: Classes which define the static constraints property

and are annotated with @Validateable can be made validateable by the framework.

Consider this example:// src/groovy/com/mycompany/myapp/User.groovypackage com.mycompany.myappimport grails.validation.Validateable@Validateableclass User {...static constraints = {login size: 5..15, blank: false, unique: truepassword size: 5..15, blank: falseemail email: true, blank: falseage min: 18}}

Thanks….

top related