1,505 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
61
views
Intercept session timeout [closed]
I have an application written in Grails 6.x.
I use spring-security-core and spring-security-ldap plugins to authenticate against an Active Directory server.
I have set a timeout of 5 minutes, and once ...
2
votes
0
answers
71
views
Why Grails Spring Security validation and logout filter always applies?
I'm using Grails 6.2.0 with the Spring Security Core 6.1.2 and Spring Security Rest 5.0.0 plugins.
I configured the filters as recommended in the documentation (or at least how I understood it):
...
1
vote
1
answer
265
views
Grails (6.2.3) generated war file not running on tomcat 10/11
I have created a grails project using grails version 6.2.3.
After this this added the quartz job dependencies and then create the class for schedule job.
Command :
grails create-app testApp
grails ...
0
votes
1
answer
94
views
Grails Version Update from 4.0.2 to 6.2.3: Getting unable to find valid certification path to requested target
I have a Grails project running on 4.0.2 and Java 11. I generated the war file and deployed on tomcat to run in scheduled manner.
Now I'm upgrading the project to 6.2.3 and Java 17.
Steps I performed ...
0
votes
3
answers
418
views
Grails 6.2 support is missing in intelliJ IDEA
I don't seem to have Grails support in intelliJ in my new project after installing the grails plugin. By "support" I mean I:
Don't see the Grails menu item under tools
Can't right-click on ...
0
votes
1
answer
897
views
Grails 6.1.2 gives "Unmatched argument at index 0" when trying to run commands
In Grails 6.1.2, Creating a new application with the Grails Shiro plugin. The command grails shiro-quick-start through the Grails CLI results in the following error:
[Unmatched argument at index 0: '...
3
votes
0
answers
72
views
Grails 3.017 not showing the fields of the domain class fields in localhost 8080
I am new to Grails . I am using Grails 3.0.17 in my project .
I have created a dummy project named A
I have created a dummy class B in my domain as below:-
class B {
String name
static ...
0
votes
1
answer
53
views
Grails Mail plugin headers is not correctly generated
I have two equal grails 2.2.3 (jdk 7) projects with same BuildConfig and Config. I am using this plugin :
compile ":mail:1.0.7"
In one of the projects the mail is sent with this data :
DATA
...
0
votes
1
answer
60
views
Grails sortableColumn is refreshing page instead of container
I have a grails application that was upgraded to 5.3.2 and it was using util:remoteSortableColumn for the sorts on the table. Only replacement I found was g:sortableColumn, so I've been trying to ...
0
votes
0
answers
144
views
Error | Failed to resolve dependencies in grails-app
I am facing this issue with Grails v2.0.3
Error Failed to resolve dependencies (Set log level to 'warn' in BuildConfig.groovy for more information):
grails version 2.0.3
java version 1.7
groovy ...
10
votes
2
answers
4k
views
Could not get resource 'https://nodejs.org/dist/v14.19.3/ivy.xml'
I am getting this Gradle error today (it worked fine before). Thank you in advance for your help.
Execution failed for task ':nodeSetup'.
Could not resolve all dependencies for configuration '...
0
votes
1
answer
89
views
Grails Field Plugin: how to access bean from custom layout template for f:display tag
I am trying to create a scaffolding template so that my calls to
<f:display bean="someBean" />
render with nicer link text for fields that link to a related entity. Given a domain ...
0
votes
1
answer
401
views
How to configure grails-spring-security-saml plugin version 5.0.0-RC3 for https applications
I am upgrading my Grails4 application to Grails5 and am trying to upgrade the grails-spring-security-saml plugin from version 4.0.2 to version 5.0.0-RC3.
I am using Okta as my identity provider and if ...
1
vote
1
answer
174
views
How to implement concurrent session filter in grails to handle multiple login session?
For example: Suppose user "[email protected]" is login from one browser and performing some works. at the same time someone else login with same user "[email protected]" from another ...
-1
votes
1
answer
71
views
Groovy files from a plugin
I want to know if it's possible to get the groovy files in place of the .class files of a plugin.
The scenario is as follows:
The system uses some plugins (made by the company);
These plugins use ...