grails-2.3 Questions
4
I just a fresh install: I downloaded and installed JDK and GGTS. I then created a new Grails 2.3.7 project and I get the error message below. Is this a known issue or am I doing something wrong?
...
Mal asked 22/4, 2014 at 20:11
2
Solved
I had to update Spring from 1.2.7 to 2.0, as well Grails from 2.2.0 to 2.3.11. After solving a few typical update problems, I started to build a WAR to the testing server. Everything seemed ok. But...
Wapentake asked 1/2, 2016 at 17:27
6
Solved
Well there was a point in the Grails Declarative Transactions. It said:
The grails.transaction.Transactional annotation was first introduced in Grails 2.3. Prior to 2.3, Spring's @Transactional...
Hightower asked 13/5, 2014 at 9:17
2
An integration test fails when running with other integration tests which have transactional enabled
I am having a problem with an integration test which tests several services. I had to disable transactional to get the test working without any transactional related runtime errors. The integration...
Diplocardiac asked 2/6, 2014 at 16:39
5
Solved
I recently upgrade our project to grails 2.3.0. Everything works fine except I've been having problems with auto-reload not working whenever I make changes to our code. This include all projects ar...
Esdraelon asked 18/9, 2013 at 21:23
2
Solved
I want to include a custom font in my CSS like this:
@font-face
{
font-family: TheFont;
src: url(fonts/SourceSansProLight.ttf);
}
The CSS is served with Grails 2.3 and the CSS is modified to b...
Adonic asked 28/2, 2014 at 7:56
2
Solved
I am using grails2.3.7 and hibernate4.
However, the default database-migration plugin is not working with hibernate4.
Is there any other plugin that can do the same thing but support hibernate4?
...
Pythagoras asked 13/3, 2014 at 21:39
2
Solved
I have two domains
class DomainA {
String name
Date dateCreated
Date lastUpdated
static transients = ['email']
static hasMany = [domainBs: DomainB]
public String getEmail() {
DomainB.mos...
Taiga asked 24/4, 2014 at 7:31
3
Solved
Should it work or has it been removed?
Here's the commands that fail:
grails create-app my_new_app
cd my_new_app
grails generate-all my_new_app.Book
Results in
Script 'GenerateAll' not found, ...
Fin asked 17/2, 2014 at 20:11
1
I'm migrating my project from grails 2.2 to 2.3 and when I do test-app (on IDEA 12.1.6), I got this error
| Error Error running forked test-app: Could not load grails build listener class
java.lan...
Ranitta asked 27/10, 2013 at 0:23
2
Solved
I upgrade to Grails 2.3 recently and try to migrate all old tests to spock integration test. But it fails at cleanup because my test is non-transactional. The Grails doc says test can be non-transa...
Trapezium asked 5/12, 2013 at 1:59
1
Solved
I have what looks to be exactly the same problem lamented here:
Grails 2.3.0 Not Running
However none of the tenetative solutions had any effect.
When I attempt to run
grails clean --stacktrac...
Hoodoo asked 6/11, 2013 at 13:54
0
When i run my grails application in tomcat i get the following error
java.lang.NoClassDefFoundError: org/apache/batik/dom/svg/SVGOMDocument. But the batik-svg-dom.1.7.jar is packaged in the war and...
Otherdirected asked 4/10, 2013 at 1:24
0
I’m using Grails version 2.3 RC2.
When running grails> test-app Something, Grails says “running without daemon”.
How can I run test-app with a daemon (if it really has this option)?
Amador asked 6/9, 2013 at 22:31
1
© 2022 - 2024 — McMap. All rights reserved.