本文来自:fair-jm.iteye.com 转截请注明出处
本文是按照网上已有的案例来的:
http://blog.csdn.net/laoxue6699/article/details/9722111
但网上这个案例是2.0版本 并不适用2.3.2 实际上文中说的安装插件等命令在2.3.2中已经被弃用了
而且很多配置也产生较大的变化
具体过程和上面所给网址一样 本人也是刚刚接触grails 具体学习的资源就是官网的manual和stackoverflow中有关grails的问题等
如有错误 欢迎纠正
在安装好grails后 运行以下指令新建一个项目:
grails create-app simple-twitter //在当前目录新建一个项目 cd simple-twitter //进入项目根目录
安装插件的方式已经改变了
现在的方式在grails-app/conf/buildConfig.groovy
在plugins下加入
compile ":spring-security-core:2.0-RC2"//不知道定位的先用 grails install-plugin spring-security-core 这个命令本身不会安装插件了 但会有相关安装插件的提示
这样还不行 还得加入一个spring的repo
在repositories下加入:
mavenRepo 'http://repo.spring.io/milestone'
好 先展现一下buildConfig.groovy的样子:
grails.servlet.version = "3.0" // Change depending on target container compliance (2.5 or 3.0) grails.project.class.dir = "target/classes" grails.project.test.class.dir = "target/test-classes" grails.project.test.reports.dir = "target/test-reports" grails.project.work.dir = "target/work" grails.project.target.level = 1.6 grails.project.source.level = 1.6 //grails.project.war.file = "target/${appName}-${appVersion}.war" /* grails.project.fork = [ // configure settings for compilation JVM, note that if you alter the Groovy version forked compilation is required // compile: [maxMemory: 256, minMemory: 64, debug: false, maxPerm: 256, daemon:true], // configure settings for the test-app JVM, uses the daemon by default test: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, daemon:true], // configure settings for the run-app JVM run: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false], // configure settings for the run-war JVM war: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256, forkReserve:false], // configure settings for the Console UI JVM console: [maxMemory: 768, minMemory: 64, debug: false, maxPerm: 256] ] */ grails.project.dependency.resolver = "maven" // or ivy grails.project.dependency.resolution = { // inherit Grails' default dependencies inherits("global") { // specify dependency exclusions here; for example, uncomment this to disable ehcache: // excludes 'ehcache' } log "error" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose' checksums true // Whether to verify checksums on resolve legacyResolve false // whether to do a secondary resolve on plugin installation, not advised and here for backwards compatibility repositories { inherits true // Whether to inherit repository definitions from plugins grailsPlugins() grailsHome() mavenLocal() grailsCentral() mavenCentral() // uncomment these (or add new ones) to enable remote dependency resolution from public Maven repositories //mavenRepo "http://repository.codehaus.org" //mavenRepo "http://download.java.net/maven/2/" //mavenRepo "http://repository.jboss.com/maven2/" mavenRepo 'http://repo.spring.io/milestone' //spring的仓库 } dependencies { // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes e.g. // runtime 'mysql:mysql-connector-java:5.1.24' runtime 'mysql:mysql-connector-java:5.1.21' //这个是加mysql的依赖要用的话先把这个jar包放在根目录下的lib目录下 } plugins { // plugins for the build system only build ":tomcat:7.0.42" // plugins for the compile step compile ":scaffolding:2.0.1" compile ':cache:1.1.1' compile ":spring-security-core:2.0-RC2" //这个是新增的 // plugins needed at runtime but not for compilation runtime ":hibernate:3.6.10.3" // or ":hibernate4:4.1.11.2" runtime ":database-migration:1.3.8" runtime ":jquery:1.10.2" runtime ":resources:1.2.1" // Uncomment these (or add new ones) to enable additional resources capabilities //runtime ":zipped-resources:1.0.1" //runtime ":cached-resources:1.1" //runtime ":yui-minify-resources:0.1.5" } }
接下来执行下
grails compile
然后就可以用s2-quickstart等命令了
grails s2-quickstart org.grails.twitter(这个是包名) Person Authority
这样会在domain下产生三个领域对象
与链接中的文章不同 要在bootstrap中进行插入操作 必须使用事务:
import org.cc.twitter.* class BootStrap { def init = { servletContext -> if (!Person.count()) { createData() } } def destroy = { } private void createData() { def userRole=null Authority.withTransaction{ userRole = new Authority(authority: 'ROLE_USER').save() } /* The default password for all user. No need to encode here to avoid double encoding. */ String password = 'password' Person.withTransaction{ [yancy: 'Yancy Vance Paredes', john: 'John Doe', jane: 'Jane Smith'].each { userName, realname -> def user = new Person(username: userName, realname: realname, password: password, enabled: true).save() PersonAuthority.create user, userRole, true } } } }
接下去用grails run-app 或者run-app(交互模式下)
没问题的话 就可以看到界面了
但此时的logout那个链接点进去是405(不能使用get方法来logout) 这是spring-security-core 2中默认的
要改变规则在 config.groovy中加入:
grails.plugin.springsecurity.logout.postOnly = false
然后stop-app再run-app 如果还不行 那么把交互模式关掉 再进去 我在这个步骤里 试了下用clean 结果再run-app的时候出现一堆错误 但是重新打开再进去 就完全没有问题了...
附:
1、如果执行run-app的操作 出现fork错误
那么把BuildConfig.groovy中的grails.project.fork给注释掉
2、在datasource.groovy中增加mysql支持:
dataSource { pooled = true driverClassName = "org.h2.Driver" username = "sa" password = "" } dataSource_mysql { dialect = org.hibernate.dialect.MySQLDialect driverClassName = 'com.mysql.jdbc.Driver' username = 'root' password = '' url = 'jdbc:mysql://localhost:3306/grails_twitter' dbCreate = 'update' //只更新 不创建 } hibernate { cache.use_second_level_cache = true cache.use_query_cache = false cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory' // Hibernate 3 // cache.region.factory_class = 'org.hibernate.cache.ehcache.EhCacheRegionFactory' // Hibernate 4 } // environment specific settings environments { development { dataSource { dbCreate = "create-drop" // one of 'create', 'create-drop', 'update', 'validate', '' url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE" } } test { dataSource { dbCreate = "update" url = "jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE" } } production { dataSource { dbCreate = "update" url = "jdbc:h2:prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE" properties { maxActive = -1 minEvictableIdleTimeMillis=1800000 timeBetweenEvictionRunsMillis=1800000 numTestsPerEvictionRun=3 testOnBorrow=true testWhileIdle=true testOnReturn=false validationQuery="SELECT 1" jdbcInterceptors="ConnectionState" } } } }
要是用mysql
只需在domain中加入
static mapping={ datasource 'mysql' //mapping还支持修改表明 修改列名等操作 /* table '表名' columns { 属性名 column:'列名' } */ }
相关推荐
- **初始化项目**:使用`grails create-app`命令创建一个新的Grails项目。 - **定义Domain Model**:通过`grails create-domain-class`命令快速生成对应的领域模型类。 - **创建Controller**:使用`grails create-...
在"第一个grails程序"中,我们通常会看到一个典型的Grails项目结构,包括以下几个关键部分: 1. **src/main/groovy**:这个目录存放所有Groovy源代码,包括应用程序的主要业务逻辑和控制器。 2. **src/main/...
Grails 是一个基于 Groovy 语言的开源 web 应用程序框架,它构建在 Java 平台上,旨在提高开发效率,简化常见 Web 开发任务。Grails 遵循 Model-View-Controller (MVC) 架构模式,允许开发者快速构建动态、数据驱动...
- **Hello World示例**:在新创建的应用中,你可以通过创建一个简单的控制器和视图来实现经典的“Hello, World!”程序,体验Grails的快速开发能力。 3. **使用IDE** Grails支持多种集成开发环境(IDE),如...
【标题】: "使用 Grails 和 Flex 构建 Web 应用程序" 是一个主题,主要探讨了如何结合两种技术来开发高效的Web应用程序。Grails是一个基于Groovy语言的开源Web应用框架,它简化了Java平台上的开发流程,而Flex是...
《使用 Grails 快速开发 Web 应用程序》 Grails,一个基于Groovy动态语言的开源MVC框架,为Web开发提供了高效且简洁的解决方案。自2007年发布以来,Grails以其快速开发能力,降低了Web应用的复杂性,吸引了众多...
Grails是一个基于Groovy语言的开源Web应用框架,它简化了开发过程,尤其适合快速构建动态网站。在Eclipse中搭建Grails项目可能相对复杂,但通过以下步骤,即使是初学者也能顺利进行。 1. **Grails环境安装** - ...
安装完成后,创建一个Grails应用程序是另一个重要的步骤,这可以通过命令行工具或者集成开发环境(IDE)来完成。Grails提供了一个默认的"Hello World"示例,帮助新手快速理解框架的基本结构。 Grails框架的配置通常...
Grails是一款基于Groovy语言的高性能Web应用开发框架,它遵循约定优于配置的原则,极大地简化了Web应用的开发过程。在Grails项目中,我们经常使用诸如`grails create-domain-class`等命令来快速创建domain、service...
初始项目(initial folder)包含一个简单的Grails应用程序,而完整项目(complete folder)展示了指南中所有步骤的结果。如果你想要从零开始,可以使用Spring Initializr创建一个新的Spring Boot项目,选择Gradle...
在现代软件开发领域,Grails作为一个基于Groovy语言的开源Web应用框架,以其高效、灵活和强大的特性深受开发者喜爱。它提供了丰富的插件系统,使得企业级Web应用的开发变得快速而简单。本篇文章将深入探讨Grails在...
- 使用`grails create-app`命令快速创建一个新的Grails项目。 - 自动生成项目的基本结构,包括目录结构和必要的配置文件。 **Hello World示例** - 创建一个简单的控制器,实现基本的路由逻辑。 - 在视图中展示...
在命令行中输入以下命令来创建一个新的Grails应用程序: ``` grails create-app demo ``` 其中,“demo”是你创建的应用程序的名字。 3. **查看输出结果** 命令执行成功后,你会看到一系列输出信息,这些...
3. **第一个Grails应用**:通过创建一个简单的应用,读者将学习Grails的基本项目结构,如`grails-app`目录下的各个子目录,以及`BuildConfig.groovy`等配置文件的作用。还将引导读者运行应用,理解Grails的命令行...
1. **Grails框架核心概念**:这一部分可能讲解了Grails的核心组件,如服务层(Service)、控制器(Controller)、视图(View)以及领域模型(Domain)。Grails的MVC设计模式是其核心架构,理解和掌握这些概念对于...
Grails是一个基于Groovy语言的全栈Web应用开发框架,它遵循敏捷开发的理念,并且简化了基于Java的Web开发。Grails的核心是基于约定优于配置的原则,它提供了一套自动化的方式来处理项目的结构、数据持久化和Web层的...
Grails 是一个基于 Groovy 语言的开源Web应用程序框架,它构建在Java平台之上,旨在简化开发过程并提高生产力。Grails 的设计深受Ruby on Rails的影响,提供了MVC(模型-视图-控制器)架构模式,允许开发者快速构建...