0
votes
1answer
54 views

Grails Project DTOs in Java

In Grails there is a plug-in compile ":dto:0.2.4" to transfer Domain objects to DTOs. When using that plug-in the DTOs are created as Java classes. For an example if there is Domain Class like ...
1
vote
1answer
101 views

Overriding Joda DateTime toString in Groovy

So I'm using the JodaTime plugin in a grails project I'm implementing and I really don't like that it spits out the ISO8601 date format when I do a toString. I've been constantly putting toString and ...
2
votes
1answer
75 views

using build-test-data plugin with Grails 2

I'm trying to use the build-test-data plugin (v. 2.0.4) to build test data in a unit test of a Grails 2.1.4 application. The app has the following domain classes class Brochure { static ...
0
votes
0answers
121 views

How to authenticate via http basic authorization with cxf-client grails plugin?

The webservice i want to post to / work with needs a basic authentication. How can i authenticate myself in my grails app with cxf-client plugin? https://pal-test.adyen.com/pal/servlet/soap/Recurring ...
0
votes
1answer
136 views

Dependency injection of cxf-bean / client in a grails service doesn't work - maybe because it's configured in my plugins config.groovy?

I'm working on a payment plugin for the grails framework. I'm using a payment provider wich gives me a SOAP API (wsdl) and i need a cxf-client to communicate with the webservice. I installed ...
0
votes
2answers
238 views

Sharing domain objects between a grails application and a non grails application

I have a grails application with some domain objects which get serialized as JSON. In another java/groovy project, I would like to use these domain objects. If I publish a plugin, it looks like only ...
2
votes
1answer
68 views

Recommended plugin for virtual SVN

Is there any plug-in in grails which can implements virtually all Subversion features?
2
votes
2answers
242 views

How to reduce the use of PermGen space in Grails

in my Grails application using the Spring Security Core plugin for authentication. I am facing a serious problem with that because my application took 21 seconds to lift the Tomcat was carrying 43/2 ...
1
vote
1answer
202 views

Setup Grails application in Google AppEngine

I created grails application and tried to setup the application in google app engine. I got error like this ../plugins/app-engine-0.8.10/src/groovy/org/grails/appengine/Log4jConfigListener.groovy: ...
0
votes
2answers
368 views

Intellij IDEA Settings for Grails Plugin Dependency Errors

I'm currently using Intellij IDEA 11.1.4 and though I've seen a few posts regarding issues with Grails plug-ins dependencies, I haven't been able to solve the problem locally. It seems as though ...
2
votes
1answer
136 views

How to configure a grails plugin from another grails plugin

I am trying to write a plugin which I can reuse in several grails applications. The plugin should basically be a wrapper for the spring security core and the ldap plugin. Which means it should ...
1
vote
1answer
387 views

get reference to spring bean from class in src/groovy

I'm writing a Grails plugin that defines a Spring bean in the plugin descriptor def doWithSpring = { myBean(MyBean) } I need to get a reference to this bean from another class in the plugin. ...
0
votes
0answers
88 views

Groovy redis plugin on Grails does not work with database option

Grails 2.0.4 Groovy 1.8 cache-redis 1.0.0 Using the redis plugin with standard hostName and port setting works fine, the plugin defaults to redis database 0... grails.cache.redis.hostName = ...
0
votes
0answers
95 views

debugging grails drools-plugin

I've created a standard grails app with create-app and then changed the DataSource.groovy dialect to H2. That app will run fine but as soon as I grails install-plugin drools-gorm, the error below get ...
0
votes
0answers
267 views

Grails Export Plugin Doesnt Work with namedQuery

I am currently working on grails export plugin. The plugin works if I will just do simple list(). But if I associate it with namedquery, it doesn't work anymore. This is part of the code.: def ...
0
votes
1answer
301 views

Resources plugin in grails gives error on file delete?

I am using Groovy on Grails and the resources plugin is configured. I have this scenario: I have a product, which has multiple images. The admin can delete any image. The logic is that when the ...
1
vote
1answer
109 views

Can I use Grails Plugin classes outside a Grails project as a Jar dependency?

I have found some code in grails plugins that can be use outside grails. Is there a way to use the code from the plugin as a dependency in a groovy project other than creating two projects? For ...
0
votes
3answers
695 views

Grails extension in SpringSource Tool Suite errors

I recently installed SpringSource Tool Suite. And I want to start working with Grails projects. So, I went to the Dashboard -> Extension, where I saw two extensions: Grails (current production ...
1
vote
1answer
239 views

Grails plugin dependency issue, WAR file missing plugin artifacts

Developing a Grails 1.3.7 web app; it depends on a plugin which depends on another plugin, the diagram below illustrates the dependency configuration. The problem is the WAR file; I'm using the ...
2
votes
2answers
667 views

How to configure db-reverse-engineer plugin

I am a total Grails noob trying to configure the db-reverse-engineer plugin for my first project. Documentation for the plugin indicates that I need to configure it, but I don't see where I am ...
2
votes
1answer
346 views

publishing Grails plugins

I'm trying to follow the new process for publishing Grails plugins. I've installed the latest version of the release plugin by adding the following to BuildConfig.groovy plugins { ...
2
votes
2answers
1k views

Property date must be a valid Date error, when using jquery UI plugin

I have a tasks class, which has a date field. In my view file, I have this line of code : <g:textField name="date" value="${tasksInstance?.date}" id="datePicker" /> And using the jquery ui ...
1
vote
4answers
807 views

Displaying calendar in jquery ui plugin

I installed the jquery ui plugin from here. I followed a simple example on that page, resulting my view file as : <%@ page import="mnm.schedule.*" %> <!doctypte html> <html> ...
1
vote
0answers
75 views

How to convert any no. into word automatically [duplicate]

Possible Duplicate: How to convert number to words in java For example if I write Rs."984" than it automatically convert into words like "Nine hundred and eighty four".
0
votes
0answers
354 views

Grails UI plugin changing my whole layout of the page

I have installed the GrailsUI plugin from this page http://grails.org/plugin/grails-ui. Installation was successful. I want to use a date picker, in that case I added this code into my view file: ...
1
vote
1answer
319 views

Grails 2.0 dependency resolution with HtmlUnit and Release plugin

I'm writing a plugin that uses HtmlUnit and I ran into a dependency issue this morning. By default when you create a plugin the tomcat and release plugins are added. I added a dependency for ...
2
votes
1answer
505 views

Error while deploying on cloud using cloud foundry

I have installed cloud foundry plugin on my grails project and I have successfully pushed my project once onto the cloud but when I tried to update my app using, grails prod cf-update command. ...
0
votes
1answer
84 views

How can I make a plugin ignore all non available tags?

I extracted all static resources (CSS, JS, IMG), the views (GSP) and i18n (messages*.properties) from my main Grails application into a separate plugin ('myguiplugin') in order to provide access for ...
0
votes
3answers
398 views

Spring Security Plug-in Doesn't Work With More Than One BelongsTo. Why?

I have a class like this : class User { String name; String password; static hasMany = [ authorities : testing.Role ] static belongsTo = Role static constraints = { ...
5
votes
1answer
2k views

How to run a local plugin in Grails 2.0?

In Grails, there is a variant how to include local plugin from sources. According to docs, one may type in BuildConfig.groovy: // Useful to test plugins you are developing. ...
0
votes
1answer
259 views

disable javamelody grails plugin completely

I am trying to figure out how to disable javamelody grails plugin completely. Following http://www.grails.org/plugin/grails-melody, I set javamelody.disabled = true in GrailsMelodyConfig.groovy. For ...
1
vote
1answer
129 views

Using Grails Acegi Plugin when a User domains “enabled” field is set to false. The user can still login

Is the disabling of users natively supported by the Acegi Grails plugin? From the Documentation it appears to support the "enabled" field.. But after setting the Users "enabled" field to false, the ...
0
votes
1answer
189 views

Error executing script TestApp: ApplicationContext requested, but is not present in the build binding

In _Events.groovy, I created a test type as such: //setup selenium test type eventAllTestsStart = { phasesToRun << "selenium" } def seleniumTestType = new JUnit4GrailsTestType('selenium', ...
0
votes
2answers
354 views

Excluding packages from grails test-app?

Is there a way to exclude packages from the default test-app runner? I have a set of long-running tests I want to run separate from other tests and I'm looking for a way to exclude a specific package ...
2
votes
0answers
333 views

How to search by date with Grails searchable plugin

I am using the searchable plugin for Grails and I am wondering how I can search by date? My groovy class has a date field like this class Foo { Date myDate String value static ...
1
vote
0answers
314 views

Grails & JMS Spring Integration: 'selector-expression' in recipient-list-router not working

Following is the code which is not working: SampleGrailsPlugin.groovy def doWithSpring = { integration{ 'recipient-list-router'(id:'listenerRouter','input-channel':'inChannel') { ...
1
vote
1answer
169 views

Specifying order of plugins in Grails

My grails application depends on several grails plugins that append and entries to web.xml The problem is I need to control the order the plugins are executed. There is a particular plugin which ...
1
vote
2answers
1k views

Why can't i login with spring security and weceem plugin installed in grails framework 1.3.7

I'm working on a nearly clean grails 1.3.7 project with weceem 1.0RC2, spring-security-core 1.1.3, spring-security-ui 0.1.2, weceem-spring-security 1.0 and their dependencies installed. Everything ...
0
votes
1answer
446 views

How to call Service in Grails with groovy

I have one service in that i have a method to call and how can i acces this service. I have seen sms plugin and installed it and How can i send sms from my application to the different mobiles.I ...
0
votes
1answer
421 views

does searchable plugin work only with hibernate?

I use grails-1.3.2 and hbase-0.2.4 plugin. I want to use searchable plugin, but when I install plugin with it appears hibernate plugin, which conflicts with hbase-0.2.4 plugin. When I am ...
3
votes
1answer
1k views

How do I modify a column using Grails' database migration plugin's Groovy DSL?

Can you give me an example of a groovy changeset using the modifyDataType method? I tried this: databaseChangeLog = { changeSet(author: "user", id: "5-1") { modifyDataType(tableName: ...
0
votes
1answer
56 views

Phantom grails portlets-plugin v0.8?

The grails portlets-plugin is at 0.7, but the liferay portlets plugin references a mysterious version 0.8 which supports portlets within packages. The only thing I found for the portlets-plugin was ...
0
votes
1answer
162 views

decorate Grails tag

The taglib provided by the Grails bean fields plugin uses a naming convention to determine the label key that should be used for each <input> element it generates. I would like to change the ...
1
vote
1answer
898 views

grails spring bean definition

In my Grails plugin I define the following Spring beans def doWithSpring = { // define a bean of type ConfigObjectHelper configHelper(ConfigObjectHelper) // Call a method of the bean ...
2
votes
1answer
302 views

How to override the 'From' parameter in Grails mail plugin

After installing the grails mail plugin, when I tried to use the ff code: mailService.sendMail { to recipients.toArray() from "${userEmail}" subject "${url?.article?.title}" html ...
0
votes
1answer
798 views

How to configure Multi-tenant plugin as single-tenant with Spring security plugin as resolver?

I can create a secure, multi-tenant web app with Grails by : setup spring security plugin, setup Multi-tenant plugin (via multi-tenant install and multi-tenant-spring-security) update ...
3
votes
1answer
402 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 ...
4
votes
1answer
1k 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. ...
2
votes
1answer
158 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?
1
vote
1answer
163 views

Is it possible to customize the hibernate-plugin autogenerated CRUD methods on my grails app?

My project's copy contains the following snippet in HibernateGrailsPlugin.groovy : def doWithDynamicMethods = { def dynamicMethods = HibernatePluginSupport.doWithDynamicMethods ...

1 2