Last updated by
2 years ago
Page: AcegiSecurity Plugin - Basic Tutorial, Version:30
PLEASE NOTE: THIS PLUGIN/METHOD IS DEPRECATED. For updated info, see:
Simplified Spring Security with GrailsBasic Tutorial using Requestmap
There are three ways to define security mappings - see Securing URLs for more details. This tutorial uses the Requestmap approach. To use Controller annotations, use this tutorial and to specify security mappings using the standard Spring Security approach use this tutorial.
Create your Grails application
# grails create-app bookstore # cd bookstore
Install the Spring Security plugin
# grails install-plugin acegi
Create the User, Role, and Requestmap domain classes
# grails create-auth-domains User Role Requestmap
You can choose other names for User, Role, and Requestmap, and can create them in packages; these are just examples.The script will create this User class:
Note: Depending on your database, some names might not be valid. This goes for any domain classes you create, but names for security seem to have an affinity towards trouble. So before you use names like "User" or "Group", make sure they are not reserved keywords in your database :)
/**
* User domain class.
*/
class User {
static transients = ['pass']
static hasMany = [authorities: Role]
static belongsTo = Role /** Username */
String username
/** User Real Name*/
String userRealName
/** MD5 Password */
String passwd
/** enabled */
boolean enabled String email
boolean emailShow /** description */
String description = '' /** plain password to create a MD5 password */
String pass = '[secret]' static constraints = {
username(blank: false, unique: true)
userRealName(blank: false)
passwd(blank: false)
enabled()
}
}/**
* Authority domain class.
*/
class Role { static hasMany = [people: User] /** description */
String description
/** ROLE String */
String authority static constraints = {
authority(blank: false, unique: true)
description()
}
}/**
* Request Map domain class.
*/
class Requestmap { String url
String configAttribute static constraints = {
url(blank: false, unique: true)
configAttribute(blank: false)
}
}Optional - create controllers and GSPs for User, Role, and Requestmap domain classes
# grails generate-manager
- grails-app/controllers/RequestmapController.groovy
- grails-app/controllers/RoleController.groovy
- grails-app/controllers/UserController.groovy
- grails-app/views/requestmap/create.gsp, edit.gsp, list.gsp, view.gsp
- grails-app/views/role/create.gsp, edit.gsp, list.gsp, view.gsp
- grails-app/views/user/create.gsp, edit.gsp, list.gsp, view.gsp
# grails generate-all User # grails generate-all Role # grails generate-all Requestmap
Optional - create controllers and GSPs for Captcha, Register, and an Emailer Service.
# grails generate-registration
- grails-app/controllers/CaptchaController.groovy
- grails-app/controllers/RegisterController.groovy
- grails-app/services/EmailerService.groovy
- grails-app/views/register/edit.gsp, index.gsp, show.gsp
Create a controller that will be restricted by role
# grails create-controller Secure
class SecureController {
def index = {
render 'Secure access only'
}
}Start the server
# grails run-app
Navigate to http://localhost:8080/bookstore/role/create and create an 'admin' role:
then navigate to http://localhost:8080/bookstore/requestmap/create and create the mapping for SecureController:
URL: /secure/** Role: ROLE_ADMIN
Note: If your controller class names have a capital letter in the name (other than the first character, e.g. BigCar or BigTruck), then the url you provide here should be something like "/bigcar/**" or "/bigtruck/**". The url you would expect to put in (i.e. "/bigCar/**" or "/bigTruck/**") will not work since the default behavior is to convert the url to lowercase before comparing with security rules.
Note: Be sure to prefix your role names with "ROLE_". If you don't, UserController won't add selected roles to users, and you won't be able to login.
and finally navigate to http://localhost:8080/bookstore/user/create to create a test user:
Now navigate again to http://localhost:8080/bookstore/secure and this time, you should be presented with the login page:
Log in with the username and password you used for the test user, and you should again be able to see the secure page:
When logging in, you can test the Remember Me functionality. Check the checkbox, and once you've tested the secure page close your browser and re-open it. Navigate again the the secure page, and since you have a cookie stored, you shouldn't need to log in again. Logout at any time by navigating to http://localhost:8080/bookstore/logout
Change some plugin parameters
You can change the configuration of the plugin by editing the following file:/home/xxx/.grails/1.2.2/projects/yourproject/plugins/acegi-0.5.3/grails-app/conf/SecurityConfig.groovy