Tagged Questions
1
vote
1answer
63 views
What can cause a Grails GORM save to fail after validate succeeds?
Immediately before validate and save I check my domain object:
class MyDomain ... {
static belongsTo = [owner: AnotherClass]
...
}
The 'owner' is set correctly. Then I validate; it passes. ...
1
vote
1answer
112 views
ValidationException on Update: Validation error whilst flushing entity on AbstractPersistenceEventListener
In my environment, i have grails.gorm.failOnError = true on Config.groovy.
package org.example
class Book {
String title
String author
String email
static constraints = {
...
0
votes
1answer
46 views
validating for a date in a grails app
My domain class has a date field. I'm getting data from the user in the format "mm/dd/yyyy"
So in my save() method in the controller I did this:
def save1() {
Date eventDate = new ...
1
vote
2answers
114 views
Grails: Constraints: Database to allow nulls, but forms may not be blank
I have a domain object called OurCompany and I'd like to be able to deliberately insert a row mostly full of nulls. When a user fills in a form though, I'd like to validate it and not allow blanks.
...
0
votes
1answer
200 views
Exception in custom validator in Grails
I'm trying to implement password validation in Grais on a User domain entity created via spring security core plugin. I have added the following code in my entity:
class User {
// Added by the ...
2
votes
2answers
179 views
grails domain object unexpectedly saved during validation
Considering the following domain classes :
class EnrichmentConfig {
String name
String description
String concept
List fields = []
static hasMany = [fields: FieldConfig]
...
4
votes
2answers
228 views
Grails Validation Not Working After Upgrade
I am in the process of upgrading my Grails 1.3.7 app to 2.0.3 and I have fixed most issues. However, I have code that used to work that creates a user and saves them to the database. The code should ...
0
votes
1answer
311 views
In a Grails domain object, is it possible to validate a field based on another field?
I have a Grails domain object that looks like this:
class Product {
Boolean isDiscounted = false
Integer discountPercent = 0
static constraints = {
isDiscounted(nullable: false)
...
0
votes
2answers
78 views
get name of failed constraints
Assume I have a User class that has a username property and there are several constraints defined on this field.
class User {
String username
static constraints = {
username blank: ...
2
votes
2answers
152 views
Grails: situation where .validate() works but .save() will fail
If a domain class will validate can I be assured it will save (assuming nothing super-drastic like the database is down)? More explicitly, under which scenarios will an object pass validation but ...
0
votes
2answers
478 views
Grails: specify number of digits for integer in domain class
Is there some better way than validators to enforce an integer be exactly, for example, 2 digits?
In my fantasy world I would do something like this:
class FantasyDomainClass{
Integer[2] ...
0
votes
1answer
859 views
Grails constraint constraint on int column throws java.lang.IllegalArgumentException
I have following constraints on two integers, score and numOfQuestions.
score blank:false, min:1, nullable:false, notEqual:null
numOfQuestions blank:false, min:1, nullable:false, notEqual:null
As ...
1
vote
0answers
113 views
Grails - preventing validation on a collection?
Is there any way to prevent validation of the objects in a collection in Grails (without disabling deep validation)?
I tried using a custom validator on the collection field, but it appears that GORM ...
1
vote
1answer
134 views
belongsTo performing differently in each scenario
Scenario 1:
I have two classes:
Post:
class Post {
String content
Date dateCreated
static constraints = {
content(blank: false)
}
static belongsTo = [ user : User ]
}
User:
class User {
// ...
0
votes
3answers
948 views
Binding only some properties onto a grails domain object?
I have a map like this:
['var1':'property1',
'var2':'3']
and a class like this:
class MyClass{
MyEnum var1
int var2
String var3
}
enum MyEnum{
PROP1( "property1" )
PROP2( ...
0
votes
3answers
427 views
Grails: Validate domain object failed when creating new object
When I created a new domain object and call save command after validating, it failed and return an error that the id of object is null! But my Domain's id will be generated by database sequence ...
1
vote
1answer
663 views
grails domain class validator + set unique constraint according to field values?
Is there a way to write a custom validator that will perform different validations according to field values?
For example
class myModel{
A a;
B b;
String prop
static ...
0
votes
2answers
2k views
Grails: Duplicates & unique constraint validation
OK here is stripped down version of what I have in my app
Artist domain:
class Artist {
String name
Date lastMined
def artistService
static transients = ['artistService']
...
2
votes
3answers
3k views
Use size constraint with Integer in Grails
The reference doc says that the size constraint:
"Uses a Groovy range to restrict the size of a collection or number or the length of a String."
When I put a size constraint on an integer, I get a ...
