Tagged Questions
A Grails plugin is a self-contained bundle of functionality that can be installed into a Grails application.
7
votes
5answers
830 views
How to monitor and maintain my grails application in live/production environment?
It is the first time I have ever launched live a website (with Grails web framework under Amazon EC2 platform and Cloud Foundry) and I realized quickly that I am not ready for monitoring and ...
5
votes
1answer
701 views
How to install Grails plugin from source code?
I got a source code of the plugin from a friend, but still don't know how to install it into my project. Yes, there's install-plugin command, but this plugin isn't allowed to upload to the root grails ...
5
votes
2answers
11k views
How to use table component added to JasperReports 3.7.2 with grails jasper plugins?
I would like to use new table component added to JasperReports 3.7.2 with grails jasper plugins. I find this new component useful to generate tables.
I have define Table dataset 1, and some fields ...
5
votes
2answers
2k views
How To Call A Taglib As A Function In A Domain Class
I need to call the Static Resources Plugin (http://www.grails.org/Static+Resources+Plugin) from my domain class.
This works perfectly in a controller:
def tstLink = ...
5
votes
3answers
806 views
Making Grails form development DRYer
When using Grails, the GSP code to render each form field looks something like this:
<tr class="prop">
<td valign="top" class="name"><label for="username">Login ...
5
votes
2answers
973 views
What makes nimble better than shiro?
What makes nimble a better choice than shiro?
I'm trying to decide between nimble and shiro for a new grails project right now and I'm curious what makes nimble the better choice.
5
votes
4answers
2k views
grails database migration
There are at least two Grails plugins that emulate the database migration functionality of Rails.
Autobase
Liquibase
Is there a consensus about which of these is best, or is there another plugin ...
5
votes
2answers
801 views
Is it possible to exclude grails plugin from production environment?
I would like to use certain plugin in development environment, but would like to exclude this plugin from production and from generated war. What is the easiest way to accomplish this?
4
votes
2answers
88 views
What widget constraints are valid for Grails domain classes?
Can you tell me the list of valid values for the widget constraint below (some-widget), e.g.:
static constraints = {
someField(widget: 'some-widget')
}
The documentation seems to be missing. ...
4
votes
1answer
794 views
Grails Spring Security: redirect after login success/failure
I'm using version 1.2 of the Spring Security plugin in a Grails application. I want login attempts to be handled in the following way:
Success
if the login was triggered by an attempt to access a ...
4
votes
1answer
463 views
Caching data in grails
I have a site where users will first enter their search criteria. The search combines data from 2 sources, one of which is not a database. The search results are generally large enough to be paged.
...
4
votes
0answers
243 views
doWithDynamicMethods not being Called
When I create a production war (grails war --nojars) my doWithDynamicMethods is not being called in a production environment. The code works in the dev env (ie grails run-app)
Here is some of my ...
4
votes
2answers
494 views
Grails client side validation
How do you (if you) manage client side validation with grails ? Do you use a plugin or do you mirror your constraints using a javascript framework ?
Cheers
3
votes
2answers
269 views
Spring Security UI and grails 2.0
I am not able to use grails security UI(0.1.2) with Grails 2.0.
I have googled the possible causes for following error and also have tried suggested fixes but they don't seem to be working.
I have ...
3
votes
0answers
250 views
jasper report in grails
I use jasper plugin to get report in pdf .I am trying to get report using this example(http://grails.org/plugin/jasper).To get particular id information in pdf format used below codes.
<div ...
3
votes
2answers
367 views
Installing Grails Spock Plugin in 2.0.0M1
I'm kicking the tires on Grails 2.0.0M1 and Springsource Tool Suite 2.7.1, but I'm having problems installing the spock plugin.
When I run "grails install-plugin spock 0.6-groovy-1.8-SNAPSHOT" I get:
...
3
votes
1answer
174 views
Grails Inline Plugins: Cannot Upgrade a plugin that is configured via BuildConfig.groovy
Our app is split into a main application and a few plugins. We're using inline plugins via the BuildConfig.groovy file. When it is time to WAR the whole thing up for production I'm getting the ...
3
votes
1answer
371 views
Time format/picker in Grails?
I have a domain class called schedule.
It has the following fields:
String timeStart
String timeEnd
Date date
String timeZone
I want to know, what datatype should be used for time. I think, Date ...
3
votes
1answer
270 views
grails override redirect controller method
I am trying to override the default controller redirect method and cannot seem to get the following bit of code to work.
I have created a plugin and I'm trying to use the "doWithDynamicMethods" to ...
3
votes
5answers
1k views
Integrating Facebook login (oauth) with existing grails application using spring-security-core plugin
I have an existing grails application that uses spring-security plugin for authentication. I would like to add Facebook connect/login which can be done via Oauth (3 legged). However, spring security ...
3
votes
1answer
267 views
What are my options for securing Spring Security UI?
I'm using the default securityConfigType which is set to use annotations.
What are my options for securing Spring Security UI controllers themselves?
Do I need to use s2ui-override on all of the ...
3
votes
2answers
384 views
Grails: Integration testing the Mail Plugin
I'm trying to integration test a class that uses the Mail Plugin. When I run my test (grails test-app -integration EmailerIntegration) I get the error:
Could not locate mail body layouts/_email. Is ...
3
votes
1answer
109 views
Grails Detect if a Plugin is Installed
Is there a way in Grails to Detect that a plugin is installed. For example I need to know if the "Acegi" plugin is installed. If it is then I can run different Code. If the plugin is not installed ...
3
votes
1answer
380 views
How do I configure logging for a grails plugin?
I'm creating my first grails plugin and I don't know where the logging should be configured.
In a normal grails app, there is a conf/Config.groovy file for that, but for a plugin there is none.
Is ...
3
votes
2answers
761 views
Disable Grails plugin
In my Grails app, I want to prevent the Searchable plugin from loading when running my unit tests. I tried doing this using the following code in the Bootstrap class
def grailsApplication
def init = ...
2
votes
2answers
47 views
grails spring security login page display
I'm using the spring security plugin in a Grails app. There are two reasons why the login page gets displayed
The user navigated to it directly
The user tried to access a page that is only available ...
2
votes
1answer
43 views
Rich text plugin for Grails
I know that there are already richtext plugins for grails like RichUI, CKEditor, FckEditor etc, but is there any plugin which binds itself with grails so well that when I can use a rich textbox just ...
2
votes
1answer
60 views
How to skip plugin update prompt when running GRAILS run-app?
Started a new project using Grails RC3
(Windows 7 64 bit Java 1.6)
Installed spring-security-core plugin
Now whenever i do a GRAILS run-app it prompts me to upgrade webxml-1.4 to 1.3.1 over and over ...
2
votes
1answer
122 views
grails and spring security core plugin - authenticateion from client
i am starting to use spring-security-core-1.1.3 plugin with grails.
My application for authentication sends request to server:
def authSomeAction = {
def req = ...//http requet here
...
2
votes
2answers
211 views
Grails - uninstalling Spring Security Core
What is the correct way to uninstall spring-security-core plugin completely? I'm working on a Grails app that no longer needs a login and I'd like to remove it.
Even though I have uninstalled it via: ...
2
votes
2answers
65 views
Grails Plugins Requiring External Relationships
I posted this on the Grails mailing list yesterday and haven't had any hits. Figured I'd try here as well today.
I'm considering writing a grails plugin but this plugin would require some sort of ...
2
votes
2answers
321 views
How to adding Dynamic Methods at Runtime to Grails domain object without creating plugins?
In the ref documentation I found only example such as
class ExamplePlugin {
def doWithDynamicMethods = { applicationContext ->
application.controllerClasses.each { controllerClass ...
2
votes
1answer
88 views
Including Grails Plugin Source in Grails 1.3.5 project
I want to use a snapshot version of the grails quartz plugin. The issue is, I want to be able to specify the dependency or include the source of the plugin in my project so that my coworkers and our ...
2
votes
3answers
2k views
Grails - Jasper Plugin - Invalid byte 1 of 1-byte UTF-8 sequence error with .jasper file
I am using Grails 1.3.5, SQL Server 2005, iReports 3.7.6, Jasper Plugin 1.1.3. In my GSP page I have given the jasperReprt tag as:
<g:jasperReport jasper="report1" format="PDF">
<input ...
2
votes
2answers
551 views
Grails Spring Security Core Plugin - adding flash message to login page
I am using the Grails Spring Security Core Plugin to secure a certain action using the following annotation.
@Secured(['IS_AUTHENTICATED_REMEMBERED'])
This causes the action to redirect to my login ...
2
votes
2answers
327 views
Distinguishing between Grails domain-class fields and getBlah() methods via GrailsDomainClassProperty
I'm writing a Groovy script (as part of a Grails plugin) and I want to get a list of properties for a GrailsDomainClass that a user of my plugin might define. I can do this using ...
2
votes
1answer
94 views
Stylesheet in Grails Feeds Plugin
trying to include stylesheet in grails plugin, any suggestion in how to implement with plugin or do I just need to write my own feed code?
2
votes
1answer
623 views
How to exclude certain plugins from war in grails 1.3.5
I'm seeking how to exclude plugins for specific environments. According to GRAILS documentation, starting with 1.3.5 it's now possible to disable a bunch of plugins. For example, I add the jetty ...
2
votes
1answer
374 views
XML sitemap in Grails
I am trying to figure out the best way to generate an XML sitemap (as described here: http://www.sitemaps.org/) for a Grails application. I am not aware of any existing plugins that do this so I might ...
2
votes
0answers
512 views
How to use Grails with BIRT report and show BIRT web viewer
I installed the birt-report plugin on a Grails web application project but I cannot understand to use it. I have 2 use cases:
Generate BIRT web viewer and show on GSP Page (Show chart report)
...
2
votes
1answer
1k views
Grails can't resolve plugin
When I try to run a grails app, I'm told that grails can't resolve the following dependencies:
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED ...
2
votes
3answers
197 views
How do I get “happy” names using Amazon S3 plugin for Grails (via Jets3t)
References:
http://www.grails.org/plugin/amazon-s3
http://svn.codehaus.org/grails-plugins/grails-amazon-s3/trunk/grails-app/services/org/grails/s3/S3AssetService.groovy
...
2
votes
1answer
163 views
Problem with grails email confirmation plug-in only with run-war
I'm using the email-confirmation plug-in and it's working fine when using run-app. However if I run-war, it gives me the following error upon confirmation sendout:
[...] No signature of method: ...
2
votes
2answers
1k views
How to easily implement “who is online” in Grails or Java Application?
I am building a community website in grails (using Apache Shiro for security and authentication system) and I would like to implement the feature "who is online?".
This url ...
2
votes
3answers
1k views
Grails Problem with custom error messages
I am currently trying to specify custom error messages in grails for the default constraints but so far all I get back is the default error message.
I know that I have to edit the ...
2
votes
2answers
1k views
Maven does not resolve a local Grails plug-in
My goal is to take a Grails web application and build it into a Web ARchive (WAR file) using Maven, and the key is that it must populate the "plugins" folder without live access to the internet. An ...
2
votes
1answer
539 views
Error in shiro configuration in a Grails-app
i'm using the Apache Shiro as the framework for athetication of my application. I was following the reference at http://www.grails.org/plugin/shiro
and my application throws the exception:
No ...
2
votes
2answers
407 views
Role based domain class field access in grails
I am developing a grails application.In that some cases I want to control the domain class fields based on the role.So that in each call to getter setter method of domain class I want to apply some ...
2
votes
6answers
2k views
Hooking into Grails Domain object save()
I'm writing a grails plugin and I need to hook into the domain save() method to do some logic after the save. I need to do this across multiple domain classes. I'm trying to avoid hibernate events in ...
2
votes
1answer
109 views
How to prevent App-wide search with Searchable Plugin?
For my Grails App i use Searchable Plugin to have an nice "google-like" Search.
I followed instructions and added:
class Address {
static searchable =true
Integer id
...