Grailsで簡単なTwitterアプリケーションを作成する(第1部)(バージョン2.3.2実践)

9532 ワード

ここでは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で
プラグインの下に追加
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

 
そしてs 2-quickstartなどのコマンドを使うことができます
 
grails s2-quickstart org.grails.twitter(     ) Person Authority

 これによりdomainの下に3つのレルムオブジェクトが生成されます
 
リンクの記事とは異なり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:'  '
    }
  */
}