Grails save () Доменный объект на самом деле делает выбор? - PullRequest
3 голосов
/ 05 мая 2011

Я пытаюсь получить объект JSONObject, который я разместил на своем отличном контроллере. Я могу передать объект, посмотреть данные JSON, а затем создать из него объект домена. Когда я сохраняю его для записи в базу данных, вместо этого выполняется выбор.

def save = {
    def input = request.JSON
    def instance = new Customers(input)
    instance.save()
}   

вот мой вывод debug sql

Hibernate: 
select
    this_.customers_id as customers1_237_0_,
    this_.customers_default_address_id as customers2_237_0_,
    this_.customers_dob as customers3_237_0_,
    this_.customers_email_address as customers4_237_0_,
    this_.customers_email_address2 as customers5_237_0_,
    this_.customers_fax as customers6_237_0_,
    this_.customers_firstname as customers7_237_0_,
    this_.customers_gender as customers8_237_0_,
    this_.customers_lastname as customers9_237_0_,
    this_.customers_membertype as customers10_237_0_,
    this_.customers_memo1 as customers11_237_0_,
    this_.customers_mname as customers12_237_0_,
    this_.customers_newsletter as customers13_237_0_,
    this_.customers_password as customers14_237_0_,
    this_.customers_point_date as customers15_237_0_,
    this_.customers_telephone as customers16_237_0_,
    this_.customers_total_points as customers17_237_0_,
    this_.customers_username as customers18_237_0_ 
from
    customers this_ 
where
    this_.customers_username=?

Не знаю, что может быть причиной этого.

Ответы [ 2 ]

7 голосов
/ 05 мая 2011

Похоже, у вас есть уникальное ограничение на имя пользователя.Grails делает выбор, чтобы проверить уникальность, поскольку предположил, что чтение одной строки - это легковесное действие, и предпочтительнее инициировать нарушение уникального ограничения и исключение.

Альтернативой является удаление уникального ограничения в классе домена и добавлениеуникальное ограничение вручную в базе данных.

0 голосов
/ 05 мая 2011

Вы пробовали что-то вроде:

Customers cust = new Customers(input);
println ("cust = "+cust);
cust.save();
...