Tagged Questions
0
votes
0answers
31 views
Can I configure data source specific “global” hibernate mappings?
I know I can specify global mappings in Config.groovy with
grails.gorm.default.mapping = {
...
}
but, in a project with multiple data sources (Grails >= 2.0.3), is it possible to configure ...
0
votes
1answer
49 views
Grails mapping to solve exception when saving instance
I have the following domain classes:
class Team{
static hasMany = [localMatches: Match, visitingMatches: Match]
static mappedBy = [localMatches: 'localTeam', visitingMatches: ...
0
votes
0answers
130 views
Hibernate MappingException with Grails. How to map this correctly?
I'm trying to understand how to map a foreign key when the foreign object have a composite id.
class Sector {
int sectorId
static belongsTo = [ company: Company ]
static mapping = {
id ...
1
vote
2answers
142 views
How to change the mapping for a map in Grails
The default mapping for a Map in Grails 2.0.0 only allows strings of less than 255 characters in the value field and I need more.
I could obviously change my Maps to a user-defined hasMany of ...
0
votes
1answer
77 views
How to require value for certain column in Grails/GORM mapping?
I have a grails application which works with a legacy database.
I have in almost all tables a column, let's say include. I want to include such entities in query results if and only if this column ...
1
vote
1answer
226 views
Mapping a UserType column of oracle in Hibernate
I have a user defined datatype that can contain a list of numbers. How can I map it in Hibernate.
While using the reverse engineer feature of hibernate, I get a Serializable datatype corresponding to ...
2
votes
2answers
208 views
Specifying field size of Map collection in grails DOM
I have a Grails 1.3.7 domain class that is declared like this:
class Document {
String url
Map metadata = new HashMap()
static constraints = {
url(nullable:false, blank: false, ...
1
vote
2answers
425 views
Stripping trailing whitespace from char fields in a legacy database with Grails GORM
What are the possible solutions for stripping the trailing whitespace when mapping char fields in a legacy database?
I see the following options:
Calling .trim() at the point of use (controller, ...
0
votes
2answers
615 views
Grails formula field not found
This questions concerns the use of the formula field in a static mapping block in Grails.
I am trying to implement a very simple domain class that uses a formula mapping (derived properties), but I ...
0
votes
2answers
541 views
Grails & JPA annotations + hibernate mapping files. How to get rid of this error?
I'm trying to reuse some of the entity classes with JPA-annotations in my project. But unfortunately I'm newbie in Hibernate & JPA too. When I try to generate controllers with command
"grails ...
1
vote
1answer
595 views
Hibernate Mapping generates Error in Grails for Column with Alias “h002-01”
Im trying to implement mapping in grails over hibernate for a table which has special characters in columne names. i.e "-"
Mapping in Domain Class
//properties
Boolean h00_02
//mapping
...
3
votes
2answers
1k views
How to adjust constraints / DB mapping for Map within grails domain class
Following grails domain class:
class MyClass {
Map myMap
}
Now for myMap, grails automatically creates a new table for the elements in the map. However if I add elements which are too long (e.g. ...
1
vote
1answer
964 views
How to force Grails to use proper column type in MySQL for Map field
I have a problem in Grails 1.1.2 + MySQL.
My domain class Something contains field
Map<String, Map<Integer, Integer>> priceMap
When I run the app, Grails creates table 'something' and ...