active questions tagged groovy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T22:24:10Z http://stackoverflow.com/feeds/tag/groovy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1895427/in-grails-can-you-use-both-sql-newinstance-and-domain-class-calls-in-the-same-met 0 in Grails can you use both sql.newInstance and Domain class calls in the same method? Andrew 2009-12-13T02:58:24Z 2009-12-15T16:42:09Z <p>Can you have code that looks like this?</p> <pre><code>def methodname () { proc = "sql to call a stored proc" def conn = Sql.newInstance(DB_CONN, DB_USERNAME, DB_PASSWORD, "org.postgresql.Driver") def result1 = conn.rows(proc) def result2 = MyClass.Find("from MyClass where foo='bar'") return [result1, result2] } </code></pre> <p>If so are they using different connections? Is there any way to get the call to the stored proc to use the same connection as the MyClass call?</p> http://stackoverflow.com/questions/1895374/with-groovy-sql-newinstance-in-grails-who-closes-the-connection-and-when 0 With groovy.sql.newInstance in grails - who closes the connection and when? Andrew 2009-12-13T02:26:17Z 2009-12-14T17:32:59Z <p>I'm using grails but I have lot's of stored procedures I'm trying to call from groovy.Sql.newInstance...</p> <p>In all the examples I've found I never see anyone actually calling close on the connection. But when I tried running a bunch of methods within one response that each uses its own call to newInstance, then it got an error that there were too many connections. That leads me to believe that it isn't pooling the connections. That's a bummer. So do people create one connection and pass it around? Does grails and groovy close the connection at the end of the request?</p> http://stackoverflow.com/questions/1900572/groovy-paginate-problem 0 Groovy paginate problem Luixv 2009-12-14T12:10:14Z 2009-12-14T12:10:14Z <p>Hi, I have an application written in groovy and I am having problems with the pagination of a resulting set.</p> <p>I have a Controller called <strong>ReportingController</strong>. This controller has two methods called <strong>listdoiTln</strong> and <strong>listdoiEv</strong>. Both methods are similar and at the end both have to render a list of reports. The last lines of both are as follows:</p> <pre><code>params.max = Math.min(params.max ? params.max.toInteger() : 15, 100) render (view: 'list', model:[reportingInstanceList: reportingInstanceList, reportingInstanceTotal: i]) </code></pre> <p>The list view is rendered as expected. At the footer of the <strong>list.gsp</strong> file I have:</p> <pre><code>&lt;div class="paginateButtons"&gt; &lt;g:paginate controller="reporting" total="${reportingInstanceTotal}" max="25"/&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>The <strong>list</strong> is working, the buttons for the pagination are there but it is always displayed the whole collection. Notice that I do not have files callled <strong>listdoiTln.gsp</strong> or <strong>listdoiEv.gsp</strong>. I am using <strong>list.gsp</strong> with different data models.</p> <p>Surely I am doing something wrong.</p> <p>Any hint?</p> <p>Thanks in advance.</p> <p>Luis</p> http://stackoverflow.com/questions/1893531/extracting-a-date-from-the-meeting-is-on-12-dec-2009-at-1300-with-groovy 1 Extracting a Date from "the meeting is on 12-DEC-2009 at 13:00" with Groovy Pablojim 2009-12-12T14:03:55Z 2009-12-14T08:12:40Z <p>As the title states I have a string similar to:</p> <p>"lorem ispom 12-DEC-2009 fsasdfsd 12:00"</p> <p>OR</p> <p>"the meeting is on 12-DEC-2009 at 13:00"</p> <p>And I need to extract a Date with time from this.</p> <p>What is an elegant and robust way of doing this in Groovy</p> http://stackoverflow.com/questions/616733/how-can-create-a-junit4-suite-with-groovy 0 How can create a Junit4 Suite with Groovy? John Russell 2009-03-05T21:37:03Z 2009-12-14T01:17:22Z <p>I have </p> <pre><code>@RunWith(Suite.class) @Suite.SuiteClasses( [ First.class,Second.class ]) public class MySuite{ } </code></pre> <p>But eclipse doesn't give me a "Run As Junit4 Test". All the individual test classes work fine with GUnit, the groovy unit test runner built into eclipse. </p> <p>Any thoughts?</p> http://stackoverflow.com/questions/1891169/non-java-developer-question 2 non java-developer question Mark 2009-12-11T22:06:41Z 2009-12-14T00:07:01Z <p>Just a basic question about Java (haven't really done anything with it personally yet):</p> <p>Is it possible to write a Java program that runs in a web browser (via JRE) on the client machine? Is something like Groovy or JavaFX really a wrapper for something that technically could be written in Java? I assumed that JavaFX at least was intended for the browser. However when I ran a sample JavaFX app from Netbeans, its a stand-alone app - not something running in the browser. In general, in the long run, or web browsers going by the wayside.</p> http://stackoverflow.com/questions/1836853/machine-learning-challenge-diagnosing-program-in-java-groovy-datamining-machin 7 Machine learning challenge: diagnosing program in java/groovy (datamining, machine learning) thehighroller 2009-12-03T00:20:31Z 2009-12-13T19:34:05Z <p>Hi All!</p> <p>I'm planning to develop program in Java which will provide diagnosis. The data set is divided into two parts one for training and the other for testing. My program should learn to classify from the training data (BTW which contain answer for 30 questions each in new column, each record in new line the last column will be diagnosis 0 or 1, in the testing part of data diagnosis column will be empty - data set contain about 1000 records) and then make predictions in testing part of data :/</p> <p>I've never done anything similar so I'll appreciate any advice or information about solution to similar problem.</p> <p>I was thinking about <a href="http://java-ml.sourceforge.net/" rel="nofollow">Java Machine Learning</a> Library or <a href="http://www.jdmp.org/" rel="nofollow">Java Data Mining Package</a> but I'm not sure if it's right direction... ? and I'm still not sure how to tackle this challenge...</p> <p>Please advise.</p> <p>All the best!</p> http://stackoverflow.com/questions/1876286/maven-dependencies-groovy 0 maven dependencies groovy Jeff Storey 2009-12-09T19:36:36Z 2009-12-13T19:21:51Z <p>I'm running a project that has a dependency on groovy 1.7-beta-1. The gmaven plugin uses groovy version 1.6 as a dependency. In my pom, I specify in the dependency management section the grooyv-all version as :</p> <pre><code>&lt;dependencyManagement&gt; &lt;dependencies&gt; &lt;dependency&gt; &lt;groupId&gt;org.codehaus.groovy&lt;/groupId&gt; &lt;artifactId&gt;groovy-all&lt;/artifactId&gt; &lt;version&gt;1.7-beta-1&lt;/version&gt; &lt;/dependency&gt; &lt;/dependencies&gt; &lt;/dependencyManagement&gt; </code></pre> <p>Yet when I run maven in debug mode I see that groovy 1.6 is being used for a dependency to the gmaven plugin. I thought my dependency management section would override this so they all use 1.7-beta-1, but I'm getting errors due to the different groovy versions. any help here would be appreciated.</p> <p>thanks,</p> <p>Jeff</p> http://stackoverflow.com/questions/786560/groovy-expando-metaclass 0 Groovy expando metaclass Pablo Fernandez 2009-04-24T16:15:24Z 2009-12-13T15:00:04Z <p>Hi, I've developed a Class that has some methods that augment Integer, it mainly lets me do this:</p> <pre><code>def total = 100.dollars + 50.euros </code></pre> <p>Now I have to extend Integer.metaClass doing something like this:</p> <pre><code>Integer.metaClass.getDollars = {-&gt; Money.Dollar(delegate) } </code></pre> <p>I tried putting that at the bottom of the file, before the Money class declaration, but the compiler says that a class Named Money already exists, I know why it happens (because groovy creates a class with the name of the file with an empty static void main to run this code).</p> <p>I also tried using a static block inside the class like this: </p> <pre><code>static { Integer.metaClass.getDollars = {-&gt; Money.Dollar(delegate) } } </code></pre> <p>This neither works.</p> <p>A third solution would be to change the file name (like MoneyClass.groovy) and keep the class name (class Money) but that seems a bit weird.</p> <p>Is there anything else I can do? Thanks.</p> http://stackoverflow.com/questions/765605/how-does-one-return-from-a-groovy-closure-and-stop-its-execution 1 How does one return from a groovy closure and stop its execution? Craig 2009-04-19T15:49:41Z 2009-12-13T14:18:29Z <p>I would like to return from a closure, like one would if using a break statement in a loop. </p> <p>For example:</p> <pre><code>largeListOfElements.each{ element-&gt; if(element == specificElement){ // do some work return // but this will only leave this iteration and start the next } } </code></pre> <p>In the above if statement I would like to stop iterating through the list and leave the closure to avoid unnecessary iterations.</p> <p>I've seen a solution where an exception is thrown within the closure and caught outside, but I'm not too fond of that solution. </p> <p>Are there any solutions to this, other than changing the code to avoid this kind of algorithm? </p> http://stackoverflow.com/questions/1895276/grails-gsp-gset-tag-set-as-integer 1 Grails GSP <g:set> tag set as integer? Steve Kuo 2009-12-13T01:22:11Z 2009-12-13T01:28:35Z <p>Using Grails' GSP <code>&lt;g:set&gt;</code> tag, is it possible to specify the type of the variable? I want to declare an integer variable, but <code>&lt;g:set&gt;</code> always declares a sting. For example:</p> <pre><code>&lt;g:set var="x" value="100"/&gt; ${x.getClass()} ${x+23} </code></pre> <p>results in</p> <pre><code>class java.lang.String 10023 </code></pre> <p>I'd like to declare <code>x</code> as an integer. I noticed that using the JSP tag <code>&lt;% int x=100; %&gt;</code> results in:</p> <pre><code>class java.lang.Integer 123 </code></pre> <p>Is there a way to do this the Grails/GSP way?</p> http://stackoverflow.com/questions/1884484/groovy-csv-parser-and-export-to-database 0 Groovy csv parser and export to database fabien-barbier 2009-12-10T22:18:51Z 2009-12-11T23:45:23Z <p>How can I parse my CSV file without parsing first line ?</p> <p>This class work but I don't want to parse the header of my CSV.</p> <pre><code>import groovy.sql.Sql class CSVParserService { boolean transactional = false def sql = Sql.newInstance("jdbc:mysql://localhost/RProject", "xxx", "xxx", "com.mysql.jdbc.Driver") def CSVList = sql.dataSet("ModuleSet") def CSVParser(String filepath, boolean header) { def parse = new File(filepath) // split and populate GeneInfo parse.splitEachLine(',') {fields -&gt; CSVList.add( Module : fields[0], Function : fields[1], Systematic_Name : fields[2], Common_Name : fields[3], ) return CSVList } } } </code></pre> http://stackoverflow.com/questions/848971/groovy-static-class 0 groovy static class Bob Herrmann 2009-05-11T16:42:07Z 2009-12-11T18:37:23Z <p>What does the 'static' do in this file, sample.groovy?</p> <pre><code>static class froob { } </code></pre> <p>The groovy code compiles fine with 'static' or without it.</p> http://stackoverflow.com/questions/1887680/how-to-get-all-validation-errors-from-sax-parser 0 How to get all validation Errors from SAX-Parser? chrsk 2009-12-11T12:12:47Z 2009-12-11T12:17:05Z <p>Hello,</p> <p>i would like to get all validation Errors from the SAX-Parser, but with my snippet i only receive the first. How can i achieve this?</p> <p>Thank you!</p> <p><strong>Snippet</strong></p> <pre><code>def factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI) def xml = new StreamSource(inputStream) def xsd = new StreamSource(new FileReader(schema), systemId) try { factory?.newSchema(xsd)?.newValidator()?.validate(xml) } catch(SAXParseException saxpe) { continueImport = false log.error("Error while parsing the import xml", saxpe) } </code></pre> http://stackoverflow.com/questions/1884979/json-to-groovy-parser 1 JSON to Groovy parser Gzorg 2009-12-10T23:59:45Z 2009-12-11T09:22:37Z <p>I found many things about converting Groovy to JSON, but oddly enough, not the other way.</p> <p>What is the (best) JSON to Groovy parser around there ?</p> http://stackoverflow.com/questions/1884290/grails-dynamic-database-connections 0 Grails dynamic database connections? intargc 2009-12-10T21:47:40Z 2009-12-10T23:29:30Z <p>Where I'm working, we have multiple database we need to be able to query. Some of them are predefined and we're using Datasources to access. Others are named after the customer id #. For instance _2. We have hundreds of customers and some customers can pose as other customers and depending on which customer is using the interface at that time, we would need to connect to their specific database for their specific data.</p> <p>I've read this is not possible with Grails but I'm having a hard time believe that there is no way to do this at all. Is there some possible way to write a plugin or mess with hibernate that would allow a dynamic connection like this? Has anyone come across this issue yet and what have you done to deal with it? </p> <p>Any information will be helpful. We've hit a dead end with our development due to this crazy database design!</p> http://stackoverflow.com/questions/821327/how-do-you-configure-groovyconsole-so-i-dont-have-to-import-libraries-at-startup 0 How do you configure GroovyConsole so I don't have to import libraries at startup? fooMonster 2009-05-04T18:37:22Z 2009-12-10T21:00:03Z <p>I have a groovy script that uses a third party library. Each time I open the application and attempt to run my script I have to import the proper library. </p> <p>I would like to be able to open GroovyConsole and run my application without having to import the library.</p> http://stackoverflow.com/questions/1875734/grails-nested-command-objects 1 Grails: nested command objects Don 2009-12-09T18:07:49Z 2009-12-10T16:31:56Z <p>Hi,</p> <p>In my grails app I have an outer command object that contains a list of other command objects:</p> <pre><code>public class OuterCommand { List&lt;InnerCommand&gt; innerCommands = ListUtils.lazyList([], FactoryUtils.instantiateFactory(InnerCommand)) } class innerCommand { String code Long id String value static constraints = { code(nullable: false, blank: false) value(nullable: false, blank: false) } } </code></pre> <p>The rather unusual instantiation of <code>innerCommands</code> is based on <a href="http://stateyourbizness.blogspot.com/2009/02/binding-to-collection-fields-on-command.html" rel="nofollow">this advice</a>. However, I find that if I call <code>validate()</code> on an instance of <code>OuterCommand</code>, the validation does not seem to validate the contained instances of <code>InnerCommand</code>.</p> <p>Is it possible to nest command objects and have the entire graph of command objects validated when <code>validate()</code> is called on the outermost object?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1649339/how-to-debug-a-gsp-page-no-grails-just-gsp 0 how to debug a gsp page? (no grails, just gsp) opensas 2009-10-30T11:46:17Z 2009-12-10T15:36:54Z <p>I've tried with netbeans and eclipse, with no luck... (coudn't try IntelliJ idea)</p> <p>I gave a quick look ant the code</p> <p><a href="http://kickjava.com/src/groovy/servlet/TemplateServlet.java.htm" rel="nofollow">http://kickjava.com/src/groovy/servlet/TemplateServlet.java.htm</a></p> <p>and it gives me the impression that .gsp pages are translated to .groovy servlets (groovlets) in memory (I might be wrong)...</p> <p>so perhaps it's not so easy to debug gsp as I though...</p> <p>so, can anybody tell me how to do it?</p> <p>pd: By debugging I mean things like browsing the code step-by-step, inspecting variables, adding watches, and all those sort of things, obviously. Not the (not so) good old printf approach...</p> http://stackoverflow.com/questions/1876810/can-you-have-too-much-of-dynamic-in-dynamic-languages 8 Can you have too much of “dynamic” in dynamic languages? Dan 2009-12-09T20:53:44Z 2009-12-10T14:27:49Z <p>In last few months I have been making a transition from Java to Groovy and I can appreciate many of the benefits it brings: less code, closures, builders, MOP that in the end makes framework like Grails possible, ease with mocking when writing tests etc.</p> <p>However, I have been “accused” by my coworkers that my code is not groovy enough. Namely, I still declare types for my parameters and fields, tend to use inheritance and polymorphism instead of duck typing etc. It seems to me that in these situations it is not only dynamic vs. static, but also dynamic vs. object-oriented paradigm kind of dilemma. In those cases I still tend to prefer OO. I feel that OO paradigm has great value in its basic premise in allowing you to abstract and relate your code constructs to particular real-world concepts.</p> <p>So, here are particular questions I need help with:</p> <ol> <li><p>Should I declare types for my parameters, fields, etc?</p></li> <li><p>Should I declare block of code as closure when simple method will do?</p></li> <li><p>When should I use duck typing instead of polymorphic dynamic dispatch. For example, in groovy I can do animal."$action"() or def animal; animal.action() , instead of Animal animal = new Dog(); animal.action(). I can see the problem with first in the context of Open-Closed principle, but any other reasons to prefer OO style polymorphism?</p></li> <li><p>When should I use interfaces in groovy (if ever)?</p></li> </ol> <p>I am sure that there are some other similar dilemmas I failed to write down. I also think that these questions are valid not just for groovy, but for any other dynamic language. What is your opinion?</p> http://stackoverflow.com/questions/1876008/is-there-a-java-scripting-language-that-can-work-without-caching-jython-groovy 1 Is there a Java Scripting Language that Can Work Without Caching? Jython? Groovy? etc? JPDecker 2009-12-09T18:50:17Z 2009-12-10T09:18:12Z <p>Hi all,</p> <p> We have an existing java-based heavyweight project that needed an interactive script interpreter. After a fair amount of research we eventually ended up with Jython, one of the reasons being that the customer's group already has a large amount of python expertise, and it's an easier sell to give them an api in a language close to one they already know. </p> <p> Alright, well at first this was fine, but there turned out to be a problem- there are deployment environments which are locked down for ordinary, (ie: non-admin) users. Such ordinary users have no permission to write anywhere on the local drives of their machines. Additionally, their $Home (on windows) is usually over a high-latency network (often 100ms+), and to top it off, the size of the writeable folder itself is usually below 10mb. Yes, that's megabytes. </p> <p> Given these restrictions, it looks like Jython may not fit the bill. We need to be able to run without access to a low-latency disk cache, even if that means a small speed penalty. After a search through Google and the forums, there doesn't appear to be a way in Jython to accomplish this. </p> <p> There are a couple obvious workarounds: </p> <ul> <li> Get the customer to open up their security. Unfortunately, it's a large bureaucracy and trying to justify changing an enterprise-wide security policy to provide scripting for one product isn't really an option. </li> <li> Set up a ramdisk and put the script interpreter's cache there. The problem with this approach on windows is that it involves a level of interference with the OS that will remain whether our application is running or not. (At least as I understand the techniques for doing so) </li> </ul> <p> So here's my plea - does anyone know of a java scripting interpreter that has an interactive mode and does not necessarily require a disk cache? It does not necessarily need to use python syntax, if there's a way to get others, (ie: javaLUA, Groovy, etc) to do this, I'd be open to it. </p> http://stackoverflow.com/questions/1877277/customizing-granite-ds-actionscript-code-generation-from-java-classes 0 Customizing Granite DS Actionscript code generation from Java classes Dougnukem 2009-12-09T22:11:14Z 2009-12-10T03:25:10Z <p>I'm using <a href="http://www.graniteds.org/confluence/display/DOC20/3.+Gas3+Template+Language" rel="nofollow">GraniteDS Actionscript code generation templates</a> that let's me take a Java object and convert it to an Actionscript class. </p> <p>It's mainly used for BlazeDS Java to Flash communication but I'm adapting it to work with JSON webservices using XStream/JETTISON JSON.</p> <p>Is it possible to use the Granite DS Groovy templates to inspect annotations on a Java class and use that to generate the code bindings?</p> <p>For example I create an @XStreamAlias to shorten the class name when sent through JSON, but I need my Actionscript generated classes to support that as well.</p> <pre><code>package com.webwars.game; @XStreamAlias("UnitStack") public class UnitStack implements Serializable { </code></pre> <p>I want my Actionscript generated code to be:</p> <pre><code>package com.webwars.gameplatform.combat.pvp { [Bindable] [RemoteClass(alias="UnitStack")] public class UnitStack extends UnitStackBase { </code></pre> <p>Is this possible with the groovy templates? </p> <p>I can't seem to find any documentation on what properties are available in the GraniteDS Groovy Template JavaType? The documentation listed on the GraniteDS site for JavaType goes to a broken Javadoc link.</p> <p>For example in my bean.gsp can I do something like:</p> <pre><code>&lt;% /////////////////////////////////////////////////////////////////////////// // Use the XStreamAlias annotation as the classname def alias = jClass.qualifiedName; if (jClass.hasAnnotation("XStreamAlias)) { alias = jClass.getAnnotation("XStreamAlias"); } %&gt; [Bindable] [RemoteClass(alias="${alias}")] public class ${jClass.as3Type.name} extends ${jClass.as3Type.name}Base {&lt;% </code></pre> http://stackoverflow.com/questions/1877039/is-groovy-really-alternative-for-java 0 Is Groovy really alternative for Java? [closed] john milko 2009-12-09T21:32:05Z 2009-12-09T21:46:05Z <p>Groovy is like a super version of Java,right?</p> <p>It has cool productivity features like closures, builders and dynamic typing...</p> <p>Can we simply add above functionality to Java?</p> <p>I not sure if migrating to Groovy is best decision?</p> <p>Question to senior Java programmers:</p> <p>If somebody ask you what will be your choice: Java + additional classes eg. range etc. + properly configured IDE </p> <p>OR</p> <p>Groovy?</p> http://stackoverflow.com/questions/1871372/how-to-check-if-a-list-contains-a-sublist 1 how to check if a list contains a sublist Omnipresent 2009-12-09T03:14:51Z 2009-12-09T20:52:18Z <pre><code>def l = ["My", "Homer"] String s = "Hi My Name is Homer" def list = s.split(" ") println list list.each{it -&gt; l.each{it1 -&gt; if (it == it1) println "found ${it}" } } </code></pre> <p>I want to check whether big list (<code>list</code>) contains all elements of sublist (<code>l</code>) Does groovy have any built in methods to check this or what I have in the above code will do?</p> http://stackoverflow.com/questions/1875518/importing-csv-files-using-groovy 0 Importing csv files using groovy Luixv 2009-12-09T17:29:48Z 2009-12-09T19:37:35Z <p>Hi! I have developed a groovy application. Now it has been required that for feeding the DB a CSV interface must be provided. That is, I have to load a csv file, parse it and insert records into the DB in a transactional way.</p> <p>The question is if there exists for groovy something like ostermiller utils (a configurable csv parser).</p> <p>Thanks in advance,</p> <p>Luis</p> http://stackoverflow.com/questions/1875509/launching-a-process-and-waiting-for-a-condition-in-groovy-or-java 0 Launching a process and waiting for a condition in Groovy or Java binil 2009-12-09T17:28:30Z 2009-12-09T17:28:30Z <p>I need to write a Groovy script which launches a process, reads the processes out &amp; err streams, and wait for a particular line of text to be outputted. The wait should not be indefinite, but should time out after a while.</p> <p>This is what I came up with. Is there a better way?</p> <pre><code>def proc = "groovy test.groovy".execute(null, new File(".")) def timeout = 10 * 1000 printProcessOutput(proc, timeout) {line, count -&gt; false /* replace with evaluation of some actual condition */ } def printProcessOutput(proc, millis, condition) { def queue = new java.util.concurrent.LinkedBlockingQueue() def out = new StreamReader(new InputStreamReader(proc.inputStream), queue) def err = new StreamReader(new InputStreamReader(proc.errorStream), queue) def outThread = new Thread(out); outThread.start() def errThread = new Thread(err); errThread.start() def start = System.currentTimeMillis() def end = start def count = 0 while (end &lt; start + millis) { def line = queue.poll(10, java.util.concurrent.TimeUnit.MILLISECONDS) if (line) { println line count++ if (condition(line, count)) { break } } end = System.currentTimeMillis() } out.kill(); try { outThread.interrupt() } catch (ex) { } err.kill(); try { errThread.interrupt() } catch (ex) { } def temp = [] queue.drainTo(temp) temp.each { println "TEMP: $it" } } class StreamReader implements Runnable { final def reader final def queue volatile def killed = false public StreamReader(reader, queue) { this.reader = reader this.queue = queue } def void run() { def buff = new BufferedReader(reader) def line = buff.readLine() while (!killed &amp;&amp; line != null) { queue.offer(line) line = buff.readLine() } } def kill() { killed = true } } </code></pre> <p>test.groovy file is simply:</p> <pre><code>def rand = new Random() def delta = 5 * 60 * 1000 def start = System.currentTimeMillis() def end = start while (end &lt; start + delta) { if (rand.nextBoolean()) { System.err.println("ERR " + new Date()) } else { System.out.println("OUT " + new Date()) } Thread.sleep(100) end = System.currentTimeMillis() } println "Done" </code></pre> 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-09T08:50:06Z <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>package es.prueba.domain 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/425617/groovy-mixins 2 Groovy Mixins? gabriel 2009-01-08T19:50:19Z 2009-12-09T03:23:28Z <p>I'm trying to mix-in a class in my Groovy/Grails app, and I'm using <a href="http://docs.codehaus.org/display/GroovyJSR/Mixins#Mixins-StaticMixing" rel="nofollow">the syntax defined in the docs</a>, but I keep getting an error.</p> <p>I have a domain class that looks like this:</p> <pre><code>class Person { mixin(ImagesMixin) // ... } </code></pre> <p>It compiles fine, but for some reason it won't work. The file containing ImagesMixin is located in my <code>/src/groovy/</code> directory.</p> <p>I've tried it using Groovy versions 1.5.7 and 1.6-RC1 without any luck. Does anyone know what I'm doing wrong?</p> <p>stacktrace:</p> <pre><code>2008-12-30 17:58:25.258::WARN: Failed startup of context org.mortbay.jetty.webapp.WebAppContext@562791{/FinalTransmission,/home/kuccello/Development/workspaces/lifeforce/FinalTransmission/web-app} org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pluginManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.ExceptionInInitializerError at java.security.AccessController.doPrivileged(Native Method) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy:67) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy) at Init_groovy$_run_closure6.doCall(Init_groovy:131) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy:66) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy:57) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy) at gant.Gant.dispatch(Gant.groovy:271) at gant.Gant.this$2$dispatch(Gant.groovy) at gant.Gant.invokeMethod(Gant.groovy) at gant.Gant.processTargets(Gant.groovy:436) at gant.Gant.processArgs(Gant.groovy:372) Caused by: java.lang.ExceptionInInitializerError at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:169) at Episode.class$(Episode.groovy) at Episode.&lt;clinit&gt;(Episode.groovy) ... 13 more Caused by: groovy.lang.MissingMethodException: No signature of method: static Person.mixin() is applicable for argument types: (java.lang.Class) values: {class ImagesMixin} at Broadcast.&lt;clinit&gt;(MyClass.groovy:17) ... 17 more 2008-12-30 17:58:25.259::WARN: Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pluginManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.ExceptionInInitializerError: groovy.lang.MissingMethodException: No signature of method: Person.mixin() is applicable for argument types: (java.lang.Class) values: {class ImagesMixin} at Broadcast.&lt;clinit&gt;(Person.groovy:17) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:169) at Episode.class$(BelongsToMyClass.groovy) at Episode.&lt;clinit&gt;(BelongsToMyClass.groovy) at java.security.AccessController.doPrivileged(Native Method) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy:67) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy) at Init_groovy$_run_closure6.doCall(Init_groovy:131) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy:66) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy:57) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy) at gant.Gant.dispatch(Gant.groovy:271) at gant.Gant.this$2$dispatch(Gant.groovy) at gant.Gant.invokeMethod(Gant.groovy) at gant.Gant.processTargets(Gant.groovy:436) at gant.Gant.processArgs(Gant.groovy:372) 2008-12-30 17:58:25.271::INFO: Started SelectChannelConnector@0.0.0.0:8080 </code></pre> http://stackoverflow.com/questions/570659/how-do-i-convert-a-groovy-string-array-to-a-java-string-array 2 How do I convert a Groovy String array to a Java String Array? Kevin Williams 2009-02-20T18:06:59Z 2009-12-09T03:13:28Z <p>I'm trying to call a methond on a Java class from a Groovy class. The Java method has a String array as a parameter, and I have a collection of Strings in my Groovy class. How do I convert the Groovy collection to a Java String array?</p> <p>Java Method:</p> <pre><code>public class SomeJavaClass{ public void helpDoSomething(String[] stuff){ } } </code></pre> <p>Groovy code</p> <pre><code>class SomeGroovyClass { def data = ["a","b","c"] def doSomething = { def javaClass = new SomeJavaClass() javaClass(data) //Groovy passes ArrayList, Java class expects String[] ??? } } </code></pre> http://stackoverflow.com/questions/1865869/how-to-read-string-from-file-using-groovy-in-quickbuild 0 How to read string from file using Groovy in QuickBuild Cyril 2009-12-08T09:47:31Z 2009-12-08T20:23:14Z <p>Please, some help to newbie in QuickBuild.</p> <p>I have a lot of versions stored in text files. To start build process I need to retrieve it and run some scripts in shell. My answer is, how to read from the file using QuickBuild environment? I know that it supports Groovy, MVEL and OGNL languages but I'm not familiar with no one of them.</p> <p>Thanks in advance.</p>