Questions tagged [ggts]

The Groovy/Grails Tool Suite (GGTS) provides an Eclipse-powered development environment for building Groovy and Grails applications.

The Groovy/Grails Tool Suite (GGTS) provides an Eclipse-powered development environment for building Groovy and Grails applications.

https://grails.org/products/ggts

120 questions
0
votes
2 answers

Can't compile a Grails project

I'm super new to Grails, so I apologize for asking something too easy: I tried to do a Project > Clean and I get: Welcome to Grails 1.3.7 - http://grails.org/ Licensed under Apache Standard License 2.0 Grails home is set to:…
Shamoon
  • 41,293
  • 91
  • 306
  • 570
0
votes
0 answers

Grails not starting the VMWare server

I have a project in Groovy Grails Tool Suite. Here are the settings of my VMWare server: bio.http.port = 8080 bio.https.port = 8444 Config.groovy: development { grails.serverURL = "http://localhost:8080/${appName}" } When I do: dev…
Mitteg
  • 169
  • 1
  • 5
  • 15
0
votes
0 answers

GGTS uses wrong JVM in forked grails

I'm encountering a problem with the forked Grails process when executing from GGTS via run-app after upgrading to Java 1.8. It insists on running the forked instance of the application in the older Java 1.7 JVM after the having compiled everything…
Steve Hole
  • 348
  • 2
  • 12
0
votes
1 answer

Grails tool suite (GGTS) Package explorer changed

I did something I didnt noticed and it changed to folder icon unlike before where controller view and domain class has specific icon my biggest concern though is that create new gsp has disappeared anyone can teach me how to change GGTS package…
Red Viper
  • 477
  • 1
  • 5
  • 22
0
votes
1 answer

How to see grails documentation on mouse hover?

I am very new to Grails I want to get info about each function just hovering the mouse as I did in java/android via Windows->Preferences->Java->Editor->hover. I am using Groovy/Grails Tool Suite Version: 3.6.4.RELEASE
eeadev
  • 3,662
  • 8
  • 47
  • 100
0
votes
3 answers

Grails joinTable query issue

I have a User domain and a Role domain and a working joinTable coded on the User side as static hasMany = [ roles: Role ] ... static mapping = { table 'user_data' id column: 'employee_number', name: 'employeeNumber', generator: 'assigned',…
mjswartz
  • 715
  • 1
  • 6
  • 19
0
votes
1 answer

How to solve Itext issue while adding jasper:1.11.0 plugin for grails 2.4.4 version

I am trying to migrate a grails project from grails version 1.3.7 to 2.4.4.In that I need to add Jasper Plugin jasper:1.11.0.I already used Jasper:1.5.3 plugin for version 1.3.7,its working fine. The problem is while adding jasper:1.11.0 plugin for…
Nojesh
  • 1
  • 2
0
votes
2 answers

I am trying to start a grails project in debug mode, it doesn't start

I am trying to start a grails project in debug mode, it doesn't start The grails debug config looks like grails> -Dserver.port=8091 run-app i have also tried grails> -Dserver.port=8091 --debug run-app But no success. Please help
0
votes
1 answer

Why do Grails 3 unit tests throw StackOverflowError when run in GGTS (Eclipse)?

Whenever I try to run any unit test in GGTS even as simple as: void "Test"() { expect: true } I get StackOverflowError. I wonder if it has something to do with GrailsUnitTestMixin. I've imported my Grails 3 project as a Gradle project in my…
Psycho Punch
  • 6,418
  • 9
  • 53
  • 86
0
votes
1 answer

Grails MySQL connection

When I try to connect to MySQL on GGTS I get the following error thrown: java.lang.IllegalArgumentException: Bad artifact coordinates mysql-connector-java-5.1.36-bin, expected format is :[:[:]]: I am running GGTS on Ubuntu on a VM. I have read…
msaggar
  • 45
  • 8
0
votes
1 answer

How to automatically import subpackages in a Grails project?

How can I make my grails project automatically import subpackages such as org.myorg.appname.subpackage? I have a standard grails project that I am building in GGTS. All of the classes so far are in a package name like org.myorg.appname. There are…
Joshua Swink
  • 3,380
  • 3
  • 29
  • 27
0
votes
1 answer

Dynamicly Displaying Users in Grails App

So I have the ability to list all users in from a database in a view, but I would like to list them alphabetically and by tab. For example, I'll have a tab for "All", "A", "B", "C", etc. What I would like to happen is that when the user clicks the…
mjswartz
  • 715
  • 1
  • 6
  • 19
0
votes
1 answer

Make an application responsive in GGTS

I don't know anything about Java. I do know MVC. I know about HTML. My friend gave me this project made in GGTS. He wants it to be responsive by twitter bootstrap. I don't know how to implement bootstrap. I would like any kind of documentation or…
Aoren
  • 105
  • 2
  • 13
0
votes
1 answer

No suitable driver found for jdbc:sqlserver

I realize this is what would be considered a duplicate topic, but I have followed the recommended steps in the other topics of this same nature with no success. I am using GGTS 3.6.4 with Grails 2.3.0 jdk1.7.0_80 Groovy compiler level…
mjswartz
  • 715
  • 1
  • 6
  • 19
0
votes
1 answer

Grails Shiro LDAP User/Role Authentication: How/What to capture and store for reuse

So I need some help with the layout/structure of my project. I am making a website and so far I have a working login page which authenticates the user with Apache Shiro against an LDAP server and redirects the user to a splash page. Depending on the…
mjswartz
  • 715
  • 1
  • 6
  • 19