0

我正在尝试保存具有学生 ID 的预订,其中学生扩展了用户。

当我保存时,我得到“找不到 java.lang.String(java.lang.Long) 的匹配构造函数错误”。

据我所知,它试图发送的 Long 是 Student 对象的唯一 ID。我找不到解决方法,这是我的代码。

 class User {
   static hasMany = [reservations:Reservation, students:Student, faculty:Faculty]

   String username
   String password
   String firstName
   String lastName
   String phoneNumber
   String emailAddress
   boolean enabled
   boolean accountExpired
   boolean accountLocked
   boolean passwordExpired



 class Student extends User{
     static belongsTo = [users:User]
     static hasMany = [reservations:Reservation]

     String studentId

 class Reservation {    
     def securityService
     Student student
     String reservationId
     String lastUpdated
     String lastUpdatedBy
     String startDate
     String endDate

当我使用 reservation1.save() 时出现错误:

Message: Could not find matching constructor for: java.lang.String(java.lang.Long)

这是我要保存的数据

//UserData
def user1 = Student.findByUsername('bobby') ?: new Student(username: 'bobby',
    enabled: true, password: 'pass', firstName: 'robert', lastName:'plant',
    metroStateStudentId: '012345670', phoneNumber: '0123456789',

//Reservation Data
def reservation1 = Reservation.findByReservationId('123456') ?: new   Reservation(reservationId:'123456',
    student: user1,startDate:'2013-07-23', endDate:'2013-07-27',lastUpdatedBy:'bobby')
    reservation1.save(flush: true, failOnError: true)
4

1 回答 1

1

不确定上面的示例代码有多完整,但我看到一些可能会或可能不会导致您看到的异常的事情。

  1. def securityService(在 Reservation 中)应该是暂时的,所以 gorm 不会试图持续存在。顺便说一句 - 你的意思是 springSecurityService
  2. 更新:只是意识到你已经将它们声明为字符串我不认为你可以直接设置日期,你需要解析字符串例如Date().parse("yyyy-MM-dd", '2013-07-23')
  3. 如果您使用的是 GORM autoTimestamp,则该lastUpdated字段应该是Date而不是String - 否则如果您不使用它,则应该禁用它
  4. 最后,Reservation 是否映射到遗留数据库 - 是否有理由让String reservationIdGORM 提供与默认 ID 相比?
于 2013-07-22T20:10:33.883 回答