0

我遇到了将 Grails 与旧版 Oracle 数据库一起使用的问题。我有带有主键文本列 TARGETTYPECODE 的旧表 TARGETTYPES:

CREATE TABLE "TMS"."TARGETTYPES" 
   (    "TARGETTYPECODE" VARCHAR2(100) NOT NULL ENABLE, 
    "TARGETTYPEDESCR" VARCHAR2(255 CHAR), 
    "ACTIVE" CHAR(1) DEFAULT 'Y' NOT NULL ENABLE, 
     CONSTRAINT "TARGETTYPES_PK" PRIMARY KEY ("TARGETTYPECODE")
   )

我创建了 grails 域类:

package tmsconf

class Targettypes {

    static transients = ['Targettypecode']
    void setTargettypecode(String Targettypecode) {
            id = Targettypecode
    }

    String  getTargettypecode() {
            return Targettypecode
    }

    String targettypedescr
    String active

    static mapping = {
         table 'TARGETTYPES'
         version false
         columns {
             id generator:'assigned', column:"TARGETTYPECODE", type:'text'
         } 
    }

    static constraints = {
        id()
        targettypecode(size: 1..100, blank: false)
        targettypedescr(size: 0..255)
        active(size: 1..1, blank: false)
        id(nullable: true)
    }
    String toString() {
        return "${targettypecode}" 
    }
}

我还创建了控制器类:

package tmsconf

class TargettypesController {
    def scaffold = true
}

应用程序已成功启动。

当我单击链接 tmsconf.TargettypesController 时,控制台出现错误:

Error 2012-10-10 10:55:37,243 [http-bio-8080-exec-9] ERROR util.JDBCExceptionReporter  - ORA-00918: column ambiguously defined

| Error 2012-10-10 10:55:37,305 [http-bio-8080-exec-9] ERROR errors.GrailsExceptionResolver  - SQLSyntaxErrorException occurred when processing request: [GET] /TMSConf/targettypes/list
ORA-00918: column ambiguously defined
. Stacktrace follows:
Message: ORA-00918: column ambiguously defined

    Line | Method
->>  445 | processError         in oracle.jdbc.driver.T4CTTIoer
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
|    396 | processError         in     ''
|    879 | processError . . . . in oracle.jdbc.driver.T4C8Oall
|    450 | receive              in oracle.jdbc.driver.T4CTTIfun
|    192 | doRPC . . . . . . .  in     ''
|    531 | doOALL               in oracle.jdbc.driver.T4C8Oall
|    207 | doOall8 . . . . . .  in oracle.jdbc.driver.T4CPreparedStatement
|    884 | executeForDescribe   in     ''
|   1167 | executeMaybeDescribe in oracle.jdbc.driver.OracleStatement
|   1289 | doExecuteWithTimeout in     ''
|   3584 | executeInternal . .  in oracle.jdbc.driver.OraclePreparedStatement
|   3628 | executeQuery         in     ''
|   1493 | executeQuery . . . . in oracle.jdbc.driver.OraclePreparedStatementWrapper
|     96 | executeQuery         in org.apache.commons.dbcp.DelegatingPreparedStatement
|     55 | <init> . . . . . . . in grails.orm.PagedResultList
|     15 | list                 in tmsconf.TargettypesController
|    186 | doFilter . . . . . . in grails.plugin.cache.web.filter.PageFragmentCachingFilter
|     63 | doFilter             in grails.plugin.cache.web.filter.AbstractFilter
|   1110 | runWorker . . . . .  in java.util.concurrent.ThreadPoolExecutor
|    603 | run                  in java.util.concurrent.ThreadPoolExecutor$Worker
^    722 | run . . . . . . . .  in java.lang.Thread

请帮忙,我哪里错了

4

1 回答 1

0

这应该有效:

package tmsconf

class Targettypes {

   String targettypecode
   String targettypedescr
   String active

   static mapping = {
      version false
      id generator: 'assigned', name: 'targettypecode'
   }

   static constraints = {
      targettypecode(size: 1..100, blank: false)
      targettypedescr(size: 0..255, nullable: true)
      active(size: 1..1, blank: false)
   }

   String toString() {
      targettypecode
   }
}

您现在可以name在块中使用该属性mapping,因此不需要创建瞬态 get/set 对来包装 id。

我还删除了表名和列名设置,因为它们被设置为无论如何都会使用的内容,并且type:'text'因为 Hibernate 知道字段的类型,所以它可以将其用于列的类型。

另外,我根据您显示的 SQL添加nullable: true了 for 。targettypedescr

通常,当您尝试映射到遗留数据库时,请使用http://grails.org/doc/latest/ref/Command%20Line/schema-export.html脚本查看 Hibernate 认为表应该是什么样的. 调整constraintsandmapping块,直到它“足够接近”。

于 2012-10-10T13:59:36.217 回答