SlideShare une entreprise Scribd logo
1  sur  21
By: Saurabh Dixit
 Groovy server pages
 Taglibs
 Validators in grails
 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.
 Tags can be created inside taglib folder in grails:
classWidgetsTagLib {
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 lib
Paginate: Method in the file
 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: true
password size: 5..15, blank: false
email email: true, blank: false
age 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: false
answer blank: false, validator: { val, obj -> val in
obj.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 firstName
String lastName
String passwordHash
static constraints = {
firstName blank: false, nullable: false
lastName blank: false, nullable: false
passwordHash 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 firstName
String lastName
String password
String confirmPassword
static constraints = {
importFrom User
password blank: false, nullable: false
confirmPassword 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>
 ApplyingValidation 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.
 TheValidateable 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.groovy
package com.mycompany.myapp
import grails.validation.Validateable
@Validateable
class User {
...
static constraints = {
login size: 5..15, blank: false, unique: true
password size: 5..15, blank: false
email email: true, blank: false
age min: 18
}
}
Grails basics  part2

Contenu connexe

Tendances

React.js or why DOM finally makes sense
React.js or why DOM finally makes senseReact.js or why DOM finally makes sense
React.js or why DOM finally makes sense
Eldar Djafarov
 
Object-Oriented JavaScript
Object-Oriented JavaScriptObject-Oriented JavaScript
Object-Oriented JavaScript
Wildan Maulana
 

Tendances (20)

Practical TypeScript
Practical TypeScriptPractical TypeScript
Practical TypeScript
 
TDD, BDD and mocks
TDD, BDD and mocksTDD, BDD and mocks
TDD, BDD and mocks
 
Javascript conditional statements
Javascript conditional statementsJavascript conditional statements
Javascript conditional statements
 
Redux training
Redux trainingRedux training
Redux training
 
React, Redux, ES2015 by Max Petruck
React, Redux, ES2015   by Max PetruckReact, Redux, ES2015   by Max Petruck
React, Redux, ES2015 by Max Petruck
 
RSpec
RSpecRSpec
RSpec
 
React with Redux
React with ReduxReact with Redux
React with Redux
 
React и redux
React и reduxReact и redux
React и redux
 
React state managmenet with Redux
React state managmenet with ReduxReact state managmenet with Redux
React state managmenet with Redux
 
Introduction To Angular's reactive forms
Introduction To Angular's reactive formsIntroduction To Angular's reactive forms
Introduction To Angular's reactive forms
 
Combres
CombresCombres
Combres
 
Tdd iPhone For Dummies
Tdd iPhone For DummiesTdd iPhone For Dummies
Tdd iPhone For Dummies
 
How To Test Everything
How To Test EverythingHow To Test Everything
How To Test Everything
 
Asp PPT (.NET )
Asp PPT (.NET )Asp PPT (.NET )
Asp PPT (.NET )
 
Workshop 20: ReactJS Part II Flux Pattern & Redux
Workshop 20: ReactJS Part II Flux Pattern & ReduxWorkshop 20: ReactJS Part II Flux Pattern & Redux
Workshop 20: ReactJS Part II Flux Pattern & Redux
 
Excellent
ExcellentExcellent
Excellent
 
React.js or why DOM finally makes sense
React.js or why DOM finally makes senseReact.js or why DOM finally makes sense
React.js or why DOM finally makes sense
 
Object-Oriented JavaScript
Object-Oriented JavaScriptObject-Oriented JavaScript
Object-Oriented JavaScript
 
Rails is not just Ruby
Rails is not just RubyRails is not just Ruby
Rails is not just Ruby
 
QTP Functions
QTP FunctionsQTP Functions
QTP Functions
 

Similaire à Grails basics part2

Jasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-casJasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-cas
ellentuck
 
Csharp4 inheritance
Csharp4 inheritanceCsharp4 inheritance
Csharp4 inheritance
Abed Bukhari
 
RubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendallRubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendall
tutorialsruby
 
RubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendallRubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendall
tutorialsruby
 
Test strategy for web development
Test strategy for web developmentTest strategy for web development
Test strategy for web development
alice yang
 
Compatibility Detector Tool of Chrome extensions
Compatibility Detector Tool of Chrome extensionsCompatibility Detector Tool of Chrome extensions
Compatibility Detector Tool of Chrome extensions
Kai Cui
 
Spring 3: What's New
Spring 3: What's NewSpring 3: What's New
Spring 3: What's New
Ted Pennings
 
Beginning AngularJS
Beginning AngularJSBeginning AngularJS
Beginning AngularJS
Troy Miles
 

Similaire à Grails basics part2 (20)

Grails 0.3-SNAPSHOT Presentation WJAX 2006 English
Grails 0.3-SNAPSHOT Presentation WJAX 2006 EnglishGrails 0.3-SNAPSHOT Presentation WJAX 2006 English
Grails 0.3-SNAPSHOT Presentation WJAX 2006 English
 
Jasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-casJasigsakai12 columbia-customizes-cas
Jasigsakai12 columbia-customizes-cas
 
Csharp4 inheritance
Csharp4 inheritanceCsharp4 inheritance
Csharp4 inheritance
 
Wheels
WheelsWheels
Wheels
 
ASP.NET 05 - Exception Handling And Validation Controls
ASP.NET 05 - Exception Handling And Validation ControlsASP.NET 05 - Exception Handling And Validation Controls
ASP.NET 05 - Exception Handling And Validation Controls
 
RubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendallRubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendall
 
RubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendallRubyOnRails-Cheatsheet-BlaineKendall
RubyOnRails-Cheatsheet-BlaineKendall
 
Introduction To Grails
Introduction To GrailsIntroduction To Grails
Introduction To Grails
 
Validation in Jakarta Struts 1.3
Validation in Jakarta Struts 1.3Validation in Jakarta Struts 1.3
Validation in Jakarta Struts 1.3
 
How to perform debounce in react
How to perform debounce in reactHow to perform debounce in react
How to perform debounce in react
 
Grails Advanced
Grails Advanced Grails Advanced
Grails Advanced
 
Reactive Access to MongoDB from Scala
Reactive Access to MongoDB from ScalaReactive Access to MongoDB from Scala
Reactive Access to MongoDB from Scala
 
Test strategy for web development
Test strategy for web developmentTest strategy for web development
Test strategy for web development
 
Forms With Ajax And Advanced Plugins
Forms With Ajax And Advanced PluginsForms With Ajax And Advanced Plugins
Forms With Ajax And Advanced Plugins
 
Compatibility Detector Tool of Chrome extensions
Compatibility Detector Tool of Chrome extensionsCompatibility Detector Tool of Chrome extensions
Compatibility Detector Tool of Chrome extensions
 
Spring 3: What's New
Spring 3: What's NewSpring 3: What's New
Spring 3: What's New
 
Exception handling
Exception handlingException handling
Exception handling
 
Advance GORM
Advance GORMAdvance GORM
Advance GORM
 
Angular JS2 Training Session #1
Angular JS2 Training Session #1Angular JS2 Training Session #1
Angular JS2 Training Session #1
 
Beginning AngularJS
Beginning AngularJSBeginning AngularJS
Beginning AngularJS
 

Dernier

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Dernier (20)

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 

Grails basics part2

  • 2.  Groovy server pages  Taglibs  Validators in grails
  • 3.  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.
  • 4.  Tags can be created inside taglib folder in grails: classWidgetsTagLib { 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 lib Paginate: Method in the file
  • 5.  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 = { … } }
  • 6.  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: true password size: 5..15, blank: false email email: true, blank: false age min: 18 } }
  • 7.  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).
  • 8.  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: false answer blank: false, validator: { val, obj -> val in obj.survey.answers } } }
  • 9.  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.
  • 10.  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)
  • 11.  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 } }
  • 12.  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 } }
  • 13.  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 firstName String lastName String passwordHash static constraints = { firstName blank: false, nullable: false lastName blank: false, nullable: false passwordHash blank: false, nullable: false } }
  • 14.  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 firstName String lastName String password String confirmPassword static constraints = { importFrom User password blank: false, nullable: false confirmPassword blank: false, nullable: false } }
  • 15.  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.
  • 16.  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/] … }
  • 17.  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}" />
  • 18.  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>
  • 19.  ApplyingValidation 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.
  • 20.  TheValidateable 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.groovy package com.mycompany.myapp import grails.validation.Validateable @Validateable class User { ... static constraints = { login size: 5..15, blank: false, unique: true password size: 5..15, blank: false email email: true, blank: false age min: 18 } }