2013-07-12 2 views
7

도메인 개체의 복사본을 만들고 싶습니다. 가장 간단한 방법은 무엇입니까?어떻게 Grails에서 도메인 객체를 복제 할 수 있습니까?

에 ... 그러나 나는이 작업을 수행하는 쉬운 방법이 있어야한다 생각 -

는 나는 새 레코드를 만든 다음 데이터 필드 단위를 복사 각각의 필드를 반복 할 수 실현 레일즈를 사용하는 간단한 방법은 다음과 같습니다.

#rails < 3.1 
new_record = old_record.clone 

#rails >= 3.1 
new_record = old_record.dup 

Grails에 해당하는 항목이 있습니까?

답변

7

저는 도메인 클래스의 깊은 복제를 만드는 코드를 수정했습니다. 나는 내 시스템에서 사용 해왔고 아주 잘 작동한다 (대부분의 경우). 아래 코드는 http://grails.1312388.n4.nabble.com/Fwd-How-to-copy-properties-of-a-domain-class-td3436759.html

에서 찾을 수 있습니다. 내 응용 프로그램에서는 사용자가 일부 객체 유형을 저장하는 옵션을 가지고 있으며이를 수행하기 위해 deepClone을 사용합니다.

"복제 할 수 없음"속성을 지정할 수 있습니다. 이를 위해 클래스에 정적 맵을 지정해야합니다. 예를 들어 다음과 같습니다.

static notCloneable = ['quoteFlows','services'] 
static hasMany = [quotePacks: QuotePack, services: Service, clients: Client, quoteFlows: QuoteFlow] 


static Object deepClone(domainInstanceToClone) { 

    //TODO: PRECISA ENTENDER ISSO! MB-249 no youtrack 
    //Algumas classes chegam aqui com nome da classe + _$$_javassist_XX 
    if (domainInstanceToClone.getClass().name.contains("_javassist")) 
     return null 

    //Our target instance for the instance we want to clone 
    // recursion 
    def newDomainInstance = domainInstanceToClone.getClass().newInstance() 

    //Returns a DefaultGrailsDomainClass (as interface GrailsDomainClass) for inspecting properties 
    GrailsClass domainClass = domainInstanceToClone.domainClass.grailsApplication.getDomainClass(newDomainInstance.getClass().name) 

    def notCloneable = domainClass.getPropertyValue("notCloneable") 

    for(DefaultGrailsDomainClassProperty prop in domainClass?.getPersistentProperties()) { 
     if (notCloneable && prop.name in notCloneable) 
      continue 

     if (prop.association) { 

      if (prop.owningSide) { 
       //we have to deep clone owned associations 
       if (prop.oneToOne) { 
        def newAssociationInstance = deepClone(domainInstanceToClone?."${prop.name}") 
        newDomainInstance."${prop.name}" = newAssociationInstance 
       } else { 

        domainInstanceToClone."${prop.name}".each { associationInstance -> 
         def newAssociationInstance = deepClone(associationInstance) 

         if (newAssociationInstance) 
          newDomainInstance."addTo${prop.name.capitalize()}"(newAssociationInstance) 
        } 
       } 
      } else { 

       if (!prop.bidirectional) { 

        //If the association isn't owned or the owner, then we can just do a shallow copy of the reference. 
        newDomainInstance."${prop.name}" = domainInstanceToClone."${prop.name}" 
       } 
       // @@JR 
       // Yes bidirectional and not owning. E.g. clone Report, belongsTo Organisation which hasMany 
       // manyToOne. Just add to the owning objects collection. 
       else { 
        //println "${prop.owningSide} - ${prop.name} - ${prop.oneToMany}" 
        //return 
        if (prop.manyToOne) { 

         newDomainInstance."${prop.name}" = domainInstanceToClone."${prop.name}" 
         def owningInstance = domainInstanceToClone."${prop.name}" 
         // Need to find the collection. 
         String otherSide = prop.otherSide.name.capitalize() 
         //println otherSide 
         //owningInstance."addTo${otherSide}"(newDomainInstance) 
        } 
        else if (prop.manyToMany) { 
         //newDomainInstance."${prop.name}" = [] as Set 

         domainInstanceToClone."${prop.name}".each { 

          //newDomainInstance."${prop.name}".add(it) 
         } 
        } 

        else if (prop.oneToMany) { 
         domainInstanceToClone."${prop.name}".each { associationInstance -> 
          def newAssociationInstance = deepClone(associationInstance) 
          newDomainInstance."addTo${prop.name.capitalize()}"(newAssociationInstance) 
         } 
        } 
       } 
      } 
     } else { 
      //If the property isn't an association then simply copy the value 
      newDomainInstance."${prop.name}" = domainInstanceToClone."${prop.name}" 

      if (prop.name == "dateCreated" || prop.name == "lastUpdated") { 
       newDomainInstance."${prop.name}" = null 
      } 
     } 
    } 

    return newDomainInstance 
} 
+0

객체를 반환하기 전에 객체를 저장하려고했으나 null을 표시합니다. 이 새로운 객체를 저장하는 방법은 무엇입니까? – roanjain

+0

Hello @roanjain,이 코드를 검토하여 업데이트되었는지 확인합니다. 하지만 여러 클래스를 복제하는 데 성공적으로 사용하고 있다고 말할 수 있습니다. – cantoni