active questions tagged grails - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T03:49:59Z http://stackoverflow.com/feeds/tag/grails http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850580/migrate-grails-hsqldb-embedded-database 0 Migrate Grail's HSQLDB embedded database GrailsNewbie 2009-12-05T00:32:56Z 2009-12-05T03:46:29Z <p>how to migrate Grail's HSQLDB embedded database into external one, such as MySQL or ApacheDerby? </p> http://stackoverflow.com/questions/1758675/grails-binddata-exclude-not-excluding 0 Grails bindData exclude not excluding Robin Jamieson 2009-11-18T20:02:28Z 2009-12-05T03:08:49Z <p>I'm trying to use 'bindData' method and exclude one field like so:</p> <pre><code>bindData(person, params, [exclude: ['responseItems']]); </code></pre> <p>I thought that by listing the 'exclude' parameter, when bindData iterates over 'params', it would ignore the key-value pair specified in the array but it doesn't appear so.</p> <p>Instead, I'm getting an error:</p> <blockquote> <p>org.springframework.orm.hibernate3.HibernateSystemException: Provided id of the wrong type for class com.mydomain.project.yatta.ResponseItem. Expected: class java.lang.Integer, got class java.lang.String; nested exception is org.hibernate.TypeMismatchException: Provided id of the wrong type for class com.mydomain.project.yatta.ResponseItem. Expected: class java.lang.Integer, got class java.lang.String</p> </blockquote> <p>Both of the POJOs used in the bind (and mapped in grails-app/conf/hibernate/hibernate.cfg.xml) is defined as: </p> <pre><code>public class Person implements java.io.Serializable { private int id; private long version; private String name; private Date createDate; private Set responseItems = new HashSet(0); // class constructors here public Set getResponseItems() { return this.responseItems; } public void setResponseItems(Set responseItems) { this.responseItems = responseItems; } // rest of the getters for the instance variables } public class ResponseItem implements java.io.Serializable { private int id; private long version; private Person person; // reference back to parent private String label; private Set someChildCollection = new HashSet(0); // class constructors, getters and setter for each instance variables here } </code></pre> <p>The incoming params look like:</p> <pre><code>2009-12-04 09:50:56,438 [9321358@qtp0-2] INFO controller.PersonController - params: [name:"Sally Mae", action:save, createDate: "2009-12-04 09:50:00", title:almost there?, controller:Person, revealIdentity:on, responseItemId:[692, 693], responseItems:[one, two], id:208] </code></pre> <p>If I switch to using 'include' and list only the fields I want, I still get the same error.</p> <p>I'm using Grails 1.1 and prior to my upgrade from 1.0, this was working and there has been no change in the POJO or the mappings.</p> http://stackoverflow.com/questions/1849897/how-to-query-a-date-in-hql-hibernate-with-joda-time 2 How to query a date in HQL (Hibernate) with Joda Time? fabien7474 2009-12-04T21:53:45Z 2009-12-04T23:10:00Z <p>I am sure that someone familiar with HQL (I am myself a newbie) can easily answer this question.</p> <p>In my Grails application, I have the following domain class.</p> <pre><code>class Book { org.joda.time.DateTime releaseDate //I use the PersistentDateTime for persisting via Hibernate (that use a DATETIME type for MySQL DB) } </code></pre> <p>In my HQL query, I want to retrieve books whose release date is included in range <code>date1</code>..<code>date2</code></p> <p>For instance I tried:</p> <pre><code>DateTime date1, date2 ... def queryStr = "select * from Book as b where b.releaseDate &gt; $date1 and b.releaseDate &lt; $date2" def res = Book.executeQuery(queryStr) </code></pre> <p>But I got the exception <code>...caused by: org.springframework.orm.hibernate3.HibernateQueryException: unexpected token:</code> The error token points to date format (for instance <code>2009-11-27T21:57:18.010+01:00</code> or <code>Fri Nov 27 22:01:20 CET 2009</code>)</p> <p>I have also tried to convert date1 into a Date class without success </p> <p>So what is the correct HQL code ? Should I convert to a specific format (which one?) using the patternForStyle method or is there another -cleaner- way to do it?</p> <p>Thanks,</p> <p>Fabien.</p> http://stackoverflow.com/questions/1849547/groovy-xmlslurper-not-parse-my-xml-file 0 groovy XmlSlurper not parse my xml file fabien-barbier 2009-12-04T20:44:10Z 2009-12-04T22:12:10Z <p>I have an xml, and I can't parse this file with xmlslurper. Here a copy of my xml file :</p> <pre><code>&lt;Entrezgene-Set&gt; &lt;Entrezgene&gt; &lt;Entrezgene_summary&gt;The protein encoded by this gene is a plasma glycoprotein of unknown function. The protein shows sequence similarity to the variable regions of some immunoglobulin supergene family member proteins. [provided by RefSeq]&lt;/Entrezgene_summary&gt; &lt;/Entrezgene&gt; &lt;/Entrezgene-Set&gt; </code></pre> <p>I just need to get text from <code>&lt;Entrezgene_summary&gt;</code></p> <p>Here my code :</p> <pre><code> def pubmedEfetch = { def base = "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?" def qs = [] qs &lt;&lt; "db=gene" qs &lt;&lt; "id=1" qs &lt;&lt; "retmode=xml" def url = new URL(base + qs.join("&amp;")) def connection = url.openConnection() def result = [:] if(connection.responseCode == 200){ def xml = connection.content.text def eFetchResult = new XmlSlurper().parseText(xml) result.geneSummary = eFetchResult.Entrezgene-Set.Entrezgene.Entrezgene_summary } else{ log.error("PubmedEfetchParserService.PubmedEsearch FAILED") log.error(url) log.error(connection.responseCode) log.error(connection.responseMessage) } render result } </code></pre> <p>And my error message :</p> <pre><code>Error 500: groovy.lang.MissingPropertyException: No such property: Entrezgene for class: java.util.Set Servlet: grails URI: /geneInfo/grails/genes/pubmedEfetch.dispatch Exception Message: No such property: Entrezgene for class: java.util.Set Caused by: groovy.lang.MissingPropertyException: No such property: Entrezgene for class: java.util.Set Class: GenesController </code></pre> <p>I don't see where is my fault?</p> <p>I also try : result.geneSummary = eFetchResult./Entrezgene-Set/.Entrezgene.Entrezgene_summary</p> <p>Someone has an idea? Thanks</p> http://stackoverflow.com/questions/1846938/include-grails-generated-java-class-into-the-grails-project 0 Include Grails generated Java class into the grails project alcoholitro 2009-12-04T13:27:39Z 2009-12-04T22:11:04Z <p>How can I Include Grails generated java class into the grails project?</p> <p>How can I use the generated class by grails into a java class in the project. Use my Groovy class into a Java class of the Grails project. Accesing his methods, attributes, etc...</p> <p>Example:</p> <p>I have a Domain class like this:</p> <pre><code>class Author implements Serializable { String firstName String lastName static hasMany = [books: Book] def relatesToMany = [ books : Book ] SortedSet books static constraints = { books(nullable: true) } } </code></pre> <p>I want to use it in a Java File. In my case I'm using GWT to send objects with the service <code>AuthorService.groovy</code>.</p> <p>I generated the interfaces with rule: <code>grails generate-gwt-rpc</code></p> <p>BookService:</p> <pre><code>package org.example.client; import com.google.gwt.user.client.rpc.RemoteService; public interface BookService extends RemoteService { es.prueba.domain.Author getAuthor(int arg0); } </code></pre> <p>BookServiceAsync:</p> <pre><code>package org.example.client; import com.google.gwt.user.client.rpc.AsyncCallback; public interface BookServiceAsync { void getAuthor(int arg0, AsyncCallback callback); } </code></pre> <p>But I get the exception:</p> <pre>No source code is available for type es.prueba.domain.Author; did you forget to inherit a required module?</pre> <p>When I run the app with: <code>grails run-app</code> command.</p> <p>How can I include source in the project?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1827773/add-fitting-list-elements-to-a-new-list 1 Add fitting List Elements to a new List bastianneu 2009-12-01T17:44:29Z 2009-12-04T16:34:10Z <p>Not sure how it is called...maybe you can help me out...</p> <p>I got a lot of Addresses. I want to get an overview and created so called Addressgroups like "My Friends" for example.</p> <p>Some Addresses have multiple Groups.</p> <p>Code works fine.</p> <p>What i need is a way to display all my availble Groups in one List on my Controller. The User must be able so selected one or multiple Groups from that List and add it to the Entry Properties.</p> <p>At the moment i achieve this by using checkboxes for every Group. Maybe there is an jquery or richui example for that?</p> <p><strong>Update for Kevin Buchan:</strong></p> <p>In my View i want to have to Lists:</p> <p>One List shows all availble Addressgroups</p> <p>The Second List show the Groups which the Adress is part of. In the beginning there is no membership to a group.</p> <p>I mark two Groups from my "All Groups" List and press Submit.</p> <p>Result:</p> <p>One List shows all availble Addressgroups except the two Groups that the Address is a member of.</p> <p>The second List shows the Groups from the Adress. Adress is a Member of that Groups.</p> <p>The logic behind this is pretty easy..and the app is already running. But i want to make it look good.</p> <p><strong>Update2</strong> i found this Screenshot...i want to do the same with grails</p> <p><img src="http://img109.imageshack.us/img109/6130/testdc.png" alt="Test"></p> http://stackoverflow.com/questions/1846555/running-a-java-program-in-grails 0 Running a Java Program in Grails bastianneu 2009-12-04T12:05:21Z 2009-12-04T14:00:01Z <p>I've written some small programs that help me out parsing/analysing data.</p> <p>I want to use those programs in my grails app.</p> <p>Regarding my research so far, it is possible, but I don't see where I have to place my Java Code to get it running. Are there any examples available? </p> http://stackoverflow.com/questions/1846785/date-updation-using-grails-and-gwt-ext 0 Date updation using Grails and GWT-EXT Prashant Nair 2009-12-04T12:52:27Z 2009-12-04T12:52:27Z <p>I have an editable grid created using GWT-EXT which consists of a date column. The date column is editable and the date can be changed using a date picker. When I get the new date , I would like to send it to a grails service so that the corresponding persistent object can be updated. The data rendering on the grid is using JSON and I defined a renderer at the column level so that the display format is what I want. When I change the date, I get the new date in the cell listener. The listener returns the new value as an Object. I create a map with the column name as the key and the new date value as the value and send it to a grails service but the service method does not get called. The same works for all other kinds of objects like Long, Double, String etc. I am using grails 1.1.1, GWT 1.6.4 and GWT-EXT 2.0.5</p> http://stackoverflow.com/questions/1841647/using-html-builders-in-grails-instead-of-gsp 1 Using HTML builders in grails instead of GSP Jack 2009-12-03T17:46:32Z 2009-12-03T22:28:47Z <p>Hello, is there a way to use <strong>groovy builders</strong> to build JSP files in a Grails application keeping things enough integrated?</p> <p>To explain better: by default Grails uses <code>gsp</code> files that are nice but quite verbose..</p> <pre><code>&lt;div class="clear"&gt; &lt;ul id="nav"&gt; &lt;li&gt;&lt;g:link controller="snippets" action="list"&gt;Snippets&lt;/g:link&gt;&lt;/li&gt; &lt;li&gt;&lt;g:link controller="users" action="list"&gt;Users&lt;/g:link&gt;&lt;/li&gt; &lt;li&gt;&lt;g:link controller="problems" action="list"&gt;Problems&lt;/g:link&gt;&lt;/li&gt; &lt;li&gt;&lt;g:link controller="messages" action="list"&gt;Messages&lt;/g:link&gt;&lt;/li&gt; &lt;/div&gt; &lt;div id="content"&gt; </code></pre> <p>is there a way to use <code>groovy.xml.MarkupBuilder</code> tha would turn the previous piece into</p> <pre><code>div(class:'clear') { ul(id:'nav') { li { g_link(controller:'snippets', action:'list', 'Snippets') } // and so on </code></pre> <p>Of course <code>g_link</code> is invented just to give the idea..</p> http://stackoverflow.com/questions/1791560/how-do-you-manage-developing-with-multiple-versions-of-grails-using-windows 1 How do you manage developing with multiple versions of Grails using Windows? tgm 2009-11-24T17:15:35Z 2009-12-03T22:26:22Z <p>We've been using Grails for a little while now and have been through a few Grails versions now. We don't always want to migrate our 'older' apps immediately but often use a newer version for new development. Changing the Windows environment variables is inconvenient since I sometimes have to work on two related projects at the same time that are running different versions of Grails.</p> <p>In Linux, I'd probably create wrapper scripts or aliases to allow me to specify on the command line a version switch but I don't believe Grails supports this.</p> <p>How are others that need to code against multiple versions of Grails managing it?</p> <p>Update:<br> I created a gv.bat file to set the GRAILS_HOME and PATH environment variables. I added a GRAILS_INSTALLS environment variable (c:\usr\local\grails on my box) and removed the %GRAILS_HOME%\bin reference from my PATH.</p> <p>gv.bat</p> <pre> @echo off SET GRAILS_HOME=%GRAILS_INSTALLS%\grails-%1 SET PATH=%GRAILS_HOME%\bin;%PATH% </pre> <p>To do any Grails work I run > gv 1.1.2 or whatever version I need to work with. I'd like to figure out how to do a string replace in the PATH to change the value but that turned out to be difficult for me</p> http://stackoverflow.com/questions/1839050/grails-gorm-domain-class-relationship 0 Grails GORM Domain class relationship alcoholitro 2009-12-03T10:30:11Z 2009-12-03T22:23:52Z <p>Grails 1.1.1 Goovy 1.5.7</p> <p>In a relationship such this:</p> <p>Author 1 -- n Book n -- 1 Publisher</p> <p>Defined in Grails:</p> <pre><code>class Author { String firstName String lastName static hasMany = [books: Book] static constraints = { books(nullable: true) } } class Book { String title Author author Publisher publisher static constraints = { author(nullable: true) publisher(nullable: true) } } class Publisher { String name static hasMany = [books: Book] static constraints = { books(nullable: true) } } </code></pre> <p>I want to load a Book with the values of Publisher and Author. When i get a Book with the query:</p> <pre><code>def book2 = Book.findAllByAuthor(author) </code></pre> <p>I get the response with the autor assosiated but the publisher only have the id and name class in the other query:</p> <pre><code>def book3 = Book.findAllByPublisher(publisher) </code></pre> <p>I retrieve me the inverse result,i have the book with the publisher data but the author only have the id and the class name.</p> <p>Where is the error in the defined model ? o there is an error in the way to do the queries ?</p> <p>Edit: </p> <p>I need the way to retrieve the values only with the query like this:</p> <pre><code>def book2 = Book.findAllByAuthor(author, [fetch:[publisher:'eager']]) </code></pre> <p>In this one I can manage the value of publisher.</p> <p>Question: If publisher had a <code>hasmany</code> or <code>Domain</code> related, getting the book I'm able to read the attributes?</p> <p>Thanks. Thanks.</p> http://stackoverflow.com/questions/1839435/setting-timeout-for-new-url-text-in-groovy-grails 1 Setting timeout for new URL(...).text in Groovy/Grails knorv 2009-12-03T11:45:11Z 2009-12-03T13:41:49Z <p>I use the following Groovy snippet to obtain the plain-text representation of an HTML-page in a Grails application:</p> <pre><code>String str = new URL("http://www.example.com/some/path")?.text?.decodeHTML() </code></pre> <p>Now I want to alter the code so that the request will timeout after 5 seconds (resulting in<code>str == null</code>). What is the easiest and most Groovy way to achieve that?</p> http://stackoverflow.com/questions/425618/executing-groovy-statements-in-javascript-sources-in-grails 4 Executing groovy statements in JavaScript sources in Grails Chris King 2009-01-08T19:50:24Z 2009-12-03T10:55:20Z <p>There are essentially 2 places to define JavaScript functions in Grails, directly in a element on the GSP, and within a separate javascript source file under /web-app/js (for example, application.js). We have defined a commonly reused javascript function within application.js, but we also need to be able to generate parts of the function dynamically using groovy code. Unfortunately, ${some groovy code} does not appear to be processed within separate javascript source files.</p> <p>Is the only way to do this by defining the javascript function within a script tag on a GSP page, or is there a more general solution? Obviously we could define the javascript function in a script tag within a template GSP file which would be reused, but there is a lot of push to keep our javascript functions defined all together in one place (i.e. the external javascript source file). This has performance benefits as well (the javascript source files are usually just downloaded once by each client's browser, instead of reloading the same javascript functions within the source of every html page they visit). I have toyed around with the idea of breaking the function up into static and dynamic pieces, putting the static ones in the external source and putting the dynamic ones in the template GSP, then gluing them together, but this seems like an unnecessary hack.</p> <p>Any ideas?</p> <p>(edit: It may sound like the idea of dynamically generating parts of a JavaScript function, which is then downloaded once and used over and over again by the client, would be a bad idea. However, the piece which is "dynamic" only changes perhaps once a week or month, and then only very slightly. Mostly we just want this piece generated off the database, even if only once, instead of hard coded.)</p> http://stackoverflow.com/questions/1838123/groovyscript-grails-system-commands 0 Groovyscript grails system commands Monica 2009-12-03T06:44:26Z 2009-12-03T06:54:03Z <p>Hi, Is there a possibility of running my "grails run-app" command from my groovy script? I tried "cmd /c dir".execute() and it was working but "cmd /c grails run-app" doesn't seem to work :( Can anybody help me? I dont know how to see the output too :( </p> http://stackoverflow.com/questions/1616090/eat-sleep-and-breathe-unit-testing-tdd-bdd 9 Eat, Sleep and Breathe Unit Testing/TDD/BDD Erlanged 2009-10-23T21:48:03Z 2009-12-03T05:38:00Z <p>I do write unit tests while writing APIs and core functionalities. But I want to be the cool fanboy who eats, sleeps and breathes TDD and BDD. What's the best way to get started with TDD/BDD the right way? Any books, resources, frameworks, best practices?</p> <p>My environment is Java backend with Grails frontend, integrated with several external web services and databases.</p> http://stackoverflow.com/questions/1832372/maven-grails-building-with-mvn-clean-install-doesnt-work 0 Maven Grails Building with 'mvn clean install' doesn't work James Camfield 2009-12-02T11:32:52Z 2009-12-03T05:37:57Z <p>Hi,</p> <p>I've built a Maven Grails project which can be build fine using command <code>mvn grails:war</code>.</p> <p>However, using the standard <code>mvn install</code> fails to work - I get exceptions complaining that a util Java class (held under the grails-app/util folder) can't compile because it can't find one of the domain classes.</p> <p>I'm not using any package structures, so the domain class isn't imported to the util class.</p> <p>I suppose my first question is - does Maven fully support the building of a mavenised Grails project? Should I be expecting <code>mvn install</code> to work?</p> <p>My second question is - If i'm forced to build the app using <code>mvn grails:war</code> - how do I enforce this when the parent project / pom has it as a dependant module?</p> http://stackoverflow.com/questions/1837622/any-sane-way-to-do-mocking-in-grails 0 any sane way to do mocking in Grails? Don 2009-12-03T04:22:45Z 2009-12-03T04:22:45Z <p>Hi,</p> <p>I have a Groovy class <code>Test</code> and I want to mock <code>foo()</code> such that (for all instances) it returns <code>bar() + 1</code></p> <pre><code>class Test { void def foo() {1} void def bar() {1} void def baz() {1} } </code></pre> <p>The normal Groovy way to do this would be</p> <pre><code>Test.metaClass.foo = {-&gt; delegate.bar() + 1} </code></pre> <p>But <a href="http://stackoverflow.com/questions/1836778/groovy-metaprogramming-causes-stackoverflowerror">I've discovered</a> that this doesn't work in Grails. I suspect it probably works in most cases, but at least in some cases (e.g. when the class is a domain class and the mocking closure uses <code>delegate</code>) it causes a StackOverflowError.</p> <p>One alternative is to use the Groovy <code>MockFor</code> or <code>StubFor</code> classes. However the problem with these methods is that they require you to either</p> <ul> <li>Provide mock closures for all the methods of the class that are invoked. This is inconvenient when you only want to mock one method</li> <li>Indicate how many times you expect each mock closure to be invoked. This is inconvenient when I don't know/care how many times this will happen (though I think this only applies to MockFor)</li> </ul> <p>Another alternative is to use the <code>mockFor</code> method provided by GrailsUnitTestCase. However, it seems that this mainly supports generating instance-specific mocks, rather than class-wide mocks.</p> <p>Is there any simple way to mock just a single method on a class in Grails? I'd be particularly keen to see an example where the class being mocked is a domain class and the mock closure uses <code>delegate</code>.</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1837132/grails-glink-tag-sometimes-works-and-sometimes-doesnt 0 grails <g:link tag sometimes works and sometimes doesn't> ראובן 2009-12-03T01:39:25Z 2009-12-03T01:54:03Z <p>The </p> <pre><code>&lt;g:link controller="foo" action="bar"&gt;foobar&lt;/g:link&gt; </code></pre> <p>tag sometimes works, that is is renders as</p> <pre><code>&lt;a href="grailsapp/foo/bar"&gt;foobar&lt;/a&gt; </code></pre> <p>and sometimes it doesn't. In this case I'll get a</p> <pre><code>&lt;a href="grailsapp/"&gt;foobar&lt;/a&gt; </code></pre> <p>Does anyone know what conditions cause this tag to fail to expand? Also is there any way to debug the tag expansion logic?</p> http://stackoverflow.com/questions/1836778/groovy-metaprogramming-causes-stackoverflowerror 0 Groovy metaprogramming causes StackOverflowError Don 2009-12-03T00:02:36Z 2009-12-03T00:58:21Z <p>Hi,</p> <p>I have a groovy class Foo that has a <code>getName()</code> method. In a subclass of GrailsUnitTestCase I'm trying to mock the getName() method of the class with this code</p> <pre><code> def bookletNames = [1: 'foo', 2: 'bar'] Foo.metaClass.getName = {-&gt; bookletNames[delegate.id] } // This line just ensures that Grails resets the meta-class when the test is complete registerMetaClass(Foo) </code></pre> <p>However, this causes a StackOverflowError when I call getName(), any idea why?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1825359/java-web-frameworks 2 Java web frameworks mnml 2009-12-01T10:40:16Z 2009-12-03T00:43:25Z <p>I was looking around to see if there is an equivalent to django/RoR in java. </p> <ul> <li><a href="http://www.playframework.org" rel="nofollow">Play Framework</a></li> <li><a href="http://www.grails.org" rel="nofollow">Grails</a></li> </ul> <p>Does anyone have ever tried those frameworks, or do you know any other? Are they faster than django/RoR?</p> http://stackoverflow.com/questions/1829773/how-to-connect-to-machine-ip-address-port-via-grails-app 0 How to connect to machine ip address & port via grails app Robin Jamieson 2009-12-01T23:50:20Z 2009-12-02T22:21:01Z <p>I'm running MacOS 10.6 with the default settings for my machine with Internet Sharing turned on. </p> <p>What needs to be configured to allow access to my machine's grails/jetty instance on a specific port?</p> <p>I can do '<a href="http://localhost/" rel="nofollow">http://localhost/</a>' as well as '<a href="http://192.x.x.x/" rel="nofollow">http://192.x.x.x/</a>' but if I were to set my grails app to run on a specific port, I can't access it with: '<a href="http://192.x.x.x:8081/" rel="nofollow">http://192.x.x.x:8081/</a>'. </p> <p>The browser can't establish a connection with this address from my own machine and I know that I need to establish an accessible port in some config file. </p> <p>I used to be able to do this prior to an upgrade from the last version of the OS but it's been so long I don't remember what I did the last time.</p> <p>NOTE: I can use 'grails run-app -Dserver.port=' to specify a port number for jetty to run my grails application but that still doesn't allow my machine to be accessible by ip address &amp; port number.</p> http://stackoverflow.com/questions/1835292/grails-1-1-1-log4j-dsl-throws-missingmethodexception-for-patternlayout-configurat 0 Grails 1.1.1 log4j DSL throws MissingMethodException for PatternLayout configuration Rob Hruska 2009-12-02T19:38:10Z 2009-12-02T21:55:32Z <p>I've upgraded a Grails 1.0.3 app to Grails 1.1.1. I've upgraded the log4j configuration in Config.groovy to conform to the <a href="http://grails.org/doc/1.1.x/guide/single.html#3.1.2%20Logging" rel="nofollow">new DSL</a>. However, after defining a ConsoleAppender with a PatternLayout, the application won't start, and instead throws a MissingMethodException with the message:</p> <pre><code>groovy.lang.MissingMethodException: No signature of method: \ groovy.util.ConfigSlurper$_parse_closure5.pattern() is applicable \ for argument types: (java.util.LinkedHashMap) \ values: [[conversionPattern:%d{ISO8601} [%10.10t] [%18.18c] [%5p] - %m%n]] </code></pre> <p>(I broke the above message into multiple lines for readability).</p> <p>My configuration is:</p> <pre><code>environments { development { log4j { appenders { console name: 'myAppender', layout: pattern(conversionPattern: '%d{ISO8601} [%10.10t] [%18.18c] [%5p] - %m%n') ... } root { error 'myAppender' additivity = true } error 'org.codehaus.groovy.grails.plugins', 'org.codehaus.groovy.grails.orm.hibernate', ... } ... } </code></pre> <p>I've tried changing the pattern, adding parentheses for the console() function, but with no success. <strong>What's causing this Exception?</strong></p> http://stackoverflow.com/questions/238746/how-to-share-domain-objects-on-grails-with-ext-gwt-gxt 2 How to share Domain objects on Grails with Ext GWT (GXT)? kolrie 2008-10-26T22:50:00Z 2009-12-02T18:33:23Z <p>Hi,</p> <p>My application is logically divided into server, which contain my Grails domain objects and controllers; and client, where I have my Ext GWT classes that build all the UI pages.</p> <p>For UI requests, I am using an AJAX call to a controller method that returns, for instance, a list of domain objects as a JSON structure.</p> <p>Following the DRY principle, I wouldn't like to "serialize" the domain data to a JSON string on the server then de-serialize it on the client to another structure - I'd like to take advantage of the Domain object I already have, this I don't have to change multiple places when I add, change or remove a new field.</p> <p>Question is: is that a good way to go? </p> <p>If yes, how would be the best way to make .groovy domain objects available on the "client-side" Ext GWT Java classes?</p> <p>If no, why is it bad and what would you advice instead?</p> http://stackoverflow.com/questions/1833712/checking-if-specific-user-has-a-role 0 Checking if specific user has a role Max 2009-12-02T15:41:10Z 2009-12-02T16:28:25Z <p>Hi,</p> <p>is there some pretty way to check if some specific user (not the one that is logged in) has some specific role?</p> <p>Here is grails example (generally the same for plain Java but syntax):</p> <pre><code>def user = User.get(1) //Get user with id 1 if (ifAnyGranted(user,"ROLE_ADMIN")) { //This is the line I need to implement somehow ... } </code></pre> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1832036/grails-appengine-file-upload-using-gaevfs 0 Grails AppEngine file upload using GAEVFS Adis 2009-12-02T10:32:06Z 2009-12-02T11:39:59Z <p>Hi, I'm working on Grails web application and need to upload files. I have a form (simplified here):</p> <pre><code>&lt;g:form action="save" method="post" enctype="multipart/form-data"&gt; &lt;input type="file" id="image" name="image" /&gt; &lt;input class="save" type="submit" value="Create" /&gt; &lt;/g:form&gt; </code></pre> <p>and in Controller code (I know that this should not be in controller but this is just to make it work and than will be designed better):</p> <pre><code>def save = { GaeVFS.setRootPath( servletContext.getRealPath( "/" ) ); FileSystemManager fsManager = GaeVFS.getManager(); FileObject tmpFolder = fsManager.resolveFile( "gae://WEB-INF/upload_files" ); if ( !tmpFolder.exists() ) { tmpFolder.createFolder(); } //I NEED CODE HERE TO SAVE THE IMAGE IN THE BIGTABLE VIA GAEVFS } </code></pre> <p>So I have two problems:</p> <p>A. When save create button is pressed a get exception since it tries to use Apache Commons FileUpload that tries to save to file system.</p> <p>How do I disable it?</p> <p>Exception is: java.lang.NoClassDefFoundError: java.rmi.server.UID is a restricted class. Please see the Google App Engine developer's guide for more details. at com.google.appengine.tools.development.agent.runtime.Runtime.reject(Runtime.java:51) at org.apache.commons.fileupload.disk.DiskFileItem.(DiskFileItem.java:103) at org.apache.commons.fileupload.disk.DiskFileItemFactory.createItem(DiskFileItemFactory.java:196) at org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:358)</p> <p>B. I need the code example to save image via gaevfs I have seen example in GaeVfsServlet but I still don't know how exactly it should look in my case. Any kind of help is welcome.</p> <p>GaeVfsServlet url: <a href="http://code.google.com/p/gaevfs/source/browse/trunk/src/com/newatlanta/appengine/servlet/GaeVfsServlet.java" rel="nofollow">http://code.google.com/p/gaevfs/source/browse/trunk/src/com/newatlanta/appengine/servlet/GaeVfsServlet.java</a></p> http://stackoverflow.com/questions/1811395/grails-indexed-parameters 3 Grails indexed parameters Frederic Daoud 2009-11-28T02:52:56Z 2009-12-02T11:05:49Z <p>I have a list of <code>Team</code> objects that have an <code>Integer seed</code> property. I want to edit all the teams' seeds at once, in a single form. I'm <i>sure</i> that Grails supports indexed parameters, but I can't get it to work.</p> <p>Here is what I have, and it works but I'm jumping through <i>way</i> too many hoops and there's gotta be a better way.</p> <p>gsp:</p> <pre><code>&lt;g:form action="setSeeds"&gt; ... &lt;g:each in="${teams}" status="i" var="team"&gt; &lt;input type="hidden" name="teams[${i}].id" value="${team.id}"&gt; &lt;input type="text" size="2" name="teams[${i}].seed" value="${team.seed}"&gt; &lt;/g:each&gt; &lt;/g:form&gt; </code></pre> <p>controller:</p> <pre><code>def setSeeds = { (0..&lt;30).each { i -&gt; def team = Team.get(Integer.parseInt(params["teams[${i}].id"])) team.seed = Integer.parseInt(params["teams[${i}].seed"]) } redirect(action:list) } </code></pre> <p>Isn't that awful? Way too much noise. How can I do something along the lines of:</p> <pre><code>params.teams.each { t -&gt; def team = Team.get(t.id) team.seed = t.seed } </code></pre> <p>That is, how do I map params named <code>team[0].seed</code>, <code>team[0].id</code>, <code>team[1].seed</code>, <code>team[1].id</code> to a List?</p> <p>In <a href="http://www.stripesbook.com" rel="nofollow">Stripes</a> you can just have a <code>List&lt;Team&gt;</code> property and it will just work. I expect no less from Grails! ;-)</p> <p>Thanks in advance for your help.</p> http://stackoverflow.com/questions/1012784/how-to-get-around-file-upload-exception-for-grails-on-google-app-engine 0 How to get around File Upload Exception for Grails on Google App Engine? Kelvin Li 2009-06-18T13:59:43Z 2009-12-02T09:33:19Z <p>I am writing an application on Google App Engine using Grails. Everything works great on my local dev environment. However on live server, I get exception when trying to upload file. When Grails runtime tries to parse controller params, it uses Apache.Commons.FileUpload, which writes temp file and Google doesn't like it. </p> <p>What is the best way to get around this without spending too much time? </p> <p>Is there any way to skip parsing one of the request form items so that I can handle it manually through controller request object? </p> http://stackoverflow.com/questions/1830187/grails-war-command-causing-java-lang-unsupportedclassversionerror 0 Grails war command causing java.lang.UnsupportedClassVersionError Robin Jamieson 2009-12-02T01:48:42Z 2009-12-02T09:08:50Z <p>I didn't think I made any tweaks to my machine configuration lately but all of the sudden, after I performed a 'grails clean', followed by 'grails war', I'm unable to build my project due to: "java.lang.UnsupportedClassVersionError". </p> <pre><code>JDK: 1.5.0_19 on MacOS 10.6 Grails: 1.1.1 Groovy: 1.6.5 </code></pre> <p>Here's what I get when I execute 'grails war':</p> <pre><code>Welcome to Grails 1.1.1 - http://grails.org/ Licensed under Apache Standard License 2.0 Grails home is set to: /usr/local/grails-1.1.1 Base Directory: /Users/Robin/code/ Running script /usr/local/grails-1.1.1/scripts/War.groovy Environment set to production Warning, target causing name overwriting of name startLogging [copy] Copied 6 empty directories to 3 empty directories under /Users/robin/.grails/1.1.1/projects/wf/resources [mkdir] Created dir: /Users/Robin/code/web-app/plugins/ui-performance-1.2.1 [copy] Copying 1 file to /Users/Robin/code/web-app/plugins/ui-performance-1.2.1 [mkdir] Created dir: /Users/robin/.grails/1.1.1/projects/wf/classes [groovyc] Compiling 14 source files to /Users/robin/.grails/1.1.1/projects/wf/classes [groovyc] Compiling 262 source files to /Users/robin/.grails/1.1.1/projects/wf/classes Compilation error: java.lang.UnsupportedClassVersionError: Bad version number in .class file </code></pre> <p>I have some jars that part java/part Groovy classes and they are compiled using Groovy 1.6.5.</p> <p>Where do I start looking to figure out what's causing this problem? Prior to Grails 1.1, I don't recall having so many issues with the framework.</p> http://stackoverflow.com/questions/1829318/how-do-i-pass-a-variable-into-grails-template-from-a-layout-file 0 How do I pass a variable into grails template from a Layout file? Mikey Donuts 2009-12-01T22:13:51Z 2009-12-01T23:28:39Z <p>So I have a navigation template (/common/_navigation.gsp) that is getting rendered in the Grails projects main Layout file (/layouts/main.gsp). How do I pass some kind of variable/parameter/arg from the individual view files to layout and eventually into the navigation template? I just want the right tab to be highlighted when I'm on a page.</p> <p>(We've already tried using the Grails Navigation Plugin. Since we have different tabs that point to the same controllers (same view, different filter) it breaks down.)</p> http://stackoverflow.com/questions/1825736/grails-render-as-xml-generates-an-unwanted-class-element 0 Grails render as XML generates an unwanted class element Einar 2009-12-01T11:59:50Z 2009-12-01T13:12:14Z <p>I am rendering a command class as XML via</p> <pre><code>render foo as XML </code></pre> <p>where foo is an instance of the command class.</p> <p>This successfully returns an XML for the objects value. However, the generated XML also contains a class element, e.g., my.package.ClassNameOfCommandObject</p> <p>This also happens when I do the same for a standard domain class, as well as when I use the encodeAsXML() method of the command object.</p> <p>How can eliminate the element from the generated XML?</p>