User Ted Naleid - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:39:03Z http://stackoverflow.com/feeds/user/8912 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1728021/adding-a-variable-to-all-views-in-grails/1733120#1733120 2 Answer by Ted Naleid for Adding a variable to all views in grails Ted Naleid 2009-11-14T03:24:35Z 2009-11-14T03:24:35Z <p>You want to use a <a href="http://grails.org/Filters" rel="nofollow">grails filter</a>. Using a filter, you can specify which controllers and methods (using wild cards) you want to intercept using before/after and afterView methods.</p> <p>This makes it easy to stuff a new variable into the model so it's available in a view. Here's an example that uses the acegi plugin authenticateService:</p> <pre><code>class SecurityFilters { def authenticateService def filters = { all(controller:'*', action:'*') { after = { model -&gt; def principal = authenticateService.principal() if (principal != null &amp;&amp; principal != 'anonymousUser') { model?.loggedInUser = principal?.domainClass log.debug("SecurityFilter: adding current user to model = $model") } else { log.debug("SecurityFilter: anonymous user, model = $model") } } } } } </code></pre> http://stackoverflow.com/questions/1681366/mercurial-test-whether-a-branch-contains-a-changeset/1685849#1685849 0 Answer by Ted Naleid for mercurial: test whether a branch contains a changeset Ted Naleid 2009-11-06T06:43:59Z 2009-11-06T06:43:59Z <p>You could always just print out the name of the branch for that revision (it'll be empty if it's default) and then test that against whatever you want (in bash or in a scripting language of some sort):</p> <pre><code>hg log --template '{branches}' -r &lt;revision name/number&gt; </code></pre> http://stackoverflow.com/questions/1654770/grails-acegi-plugin-lost-password/1655040#1655040 1 Answer by Ted Naleid for Grails Acegi plugin lost password Ted Naleid 2009-10-31T17:35:50Z 2009-11-01T05:26:42Z <p>Google is failing you because there isn't one. It's really not possible to reverse the hashed password (without brute force cracking and rainbow tables), and if it were, that'd mean that your system was not secure.</p> <p>The common pattern is to e-mail the user that forgot their password with a one time use token that they can then use to reset the password to whatever they want to. This isn't built into the framework, but it's not too hard to do manually (I'd suggest using the grails mail plugin).</p> http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621783#1621783 4 Answer by Ted Naleid for recommendation for choosing a new web development stack Ted Naleid 2009-10-25T19:19:16Z 2009-10-25T19:19:16Z <p>I'd suggest you take another look at Grails. It does use hibernate and spring under the covers, but for most situations, you don't need to know the details of those frameworks. There's a large community and lots of documentation/blogs/mailing lists for support, as well as a thriving plugin community with over 300 plugins solving pretty much any need.</p> <p>If you're still put off by grails, you could look into the <a href="http://www.playframework.org/" rel="nofollow">play framework</a>. I don't have any experience with it, but there has been some traffic recently around it on hacker news and the like. I know it uses groovy for the templating language.</p> http://stackoverflow.com/questions/1592088/a-simple-framework-for-google-app-engine-like-sinatra/1592189#1592189 0 Answer by Ted Naleid for A simple framework for Google App Engine (like Sinatra)? Ted Naleid 2009-10-20T02:43:41Z 2009-10-20T02:43:41Z <p>You should check out <a href="http://gaelyk.appspot.com/" rel="nofollow">gaelyk</a>. It's a lightweight framework on top of appengine that uses groovy.</p> http://stackoverflow.com/questions/1529232/triple-single-quote-strings-in-groovy-should-the-resulting-string-contain-extra/1529423#1529423 3 Answer by Ted Naleid for Triple single quote strings in Groovy - Should the resulting string contain extra spaces? Ted Naleid 2009-10-07T04:05:50Z 2009-10-07T04:05:50Z <p>Lee's right, triple quoted strings aren't given any special treatment, but because you're using groovy, it's easy enough to get the behavior you want:</p> <pre><code>def description = '''Join the Perl programmers of the Pork Producers of America as we hone our skills and ham it up a bit. You can show off your programming chops while trying to win a year's supply of pork chops in our programming challenge. Come and join us in historic (and aromatic), Austin, Minnesota. You'll know when you're there!''' description.split("\n").collect { it.trim() }.join(" ") </code></pre> <p>prints: </p> <pre><code>Join the Perl programmers of the Pork Producers of America as we hone our skills and ham it up a bit. You can show off your programming chops while trying to win a year's supply of pork chops in our programming challenge. Come and join us in historic (and aromatic), Austin, Minnesota. You'll know when you're there! </code></pre> <p>If you're looking for additional formatting, you might want to check out <a href="http://daringfireball.net/projects/markdown/syntax" rel="nofollow">markdown</a> syntax and the <a href="http://markdownj.org/" rel="nofollow">MarkdownJ library</a>. I actually just released a <a href="http://bitbucket.org/tednaleid/grails-markdown/wiki/Home" rel="nofollow">Grails Markdown plugin</a> yesterday that will take markdown formatted text and turn it into HTML for a GSP.</p> http://stackoverflow.com/questions/1489195/groovy-closure-variable-increment/1490234#1490234 1 Answer by Ted Naleid for groovy closure variable increment Ted Naleid 2009-09-29T02:05:29Z 2009-09-29T04:08:23Z <p>That's not directly supported by the closure, but it's easy enough to achieve the same logic if you change things around slightly:</p> <pre><code>// test script: def f = new File("test.txt") def currentLine f.eachLine { nextLine -&gt; if (currentLine) { if (currentLine.find(/hooray/)) { println "current line: ${currentLine}" println "next line: ${nextLine}" } } currentLine = nextLine } // test.txt contents: first line second line third line fourth line fifth hooray line sixth line seventh line </code></pre> <p>Edit:</p> <p>If you're looking for the encapsulation that Chili commented on below, you could always define your own method on File:</p> <pre><code>File.metaClass.eachLineWithNextLinePeek = { closure -&gt; def currentLine delegate.eachLine { nextLine -&gt; if (currentLine) { closure(currentLine, nextLine) } currentLine = nextLine } } def f = new File("test.txt") f.eachLineWithNextLinePeek { currentLine, nextLine -&gt; if (currentLine.find(/hooray/)) { println "current line: ${currentLine}" println "next line: ${nextLine}" } } </code></pre> http://stackoverflow.com/questions/1467641/groovy-list-sort-by-first-second-then-third-elements/1468790#1468790 0 Answer by Ted Naleid for Groovy list.sort by first, second then third elements Ted Naleid 2009-09-23T22:08:47Z 2009-09-23T22:08:47Z <p>If you want to sort arrays of arbitrary (though homogenous) length, you can use this and it will do it in a single pass:</p> <pre><code>def list = [[2, 0, 1], [1, 5, 2], [1, 0, 3]] list.sort { a, b -&gt; for (int i : (0..&lt;a.size())) { def comparison = (a[i] &lt;=&gt; b[i]) if (comparison) return comparison } return 0 } assert list == [[1, 0, 3], [1, 5, 2], [2, 0, 1]] </code></pre> http://stackoverflow.com/questions/1466254/groovy-property-definition/1468166#1468166 1 Answer by Ted Naleid for Groovy property definition Ted Naleid 2009-09-23T19:42:34Z 2009-09-23T19:42:34Z <p>You're looking for a difference that isn't there in groovy.</p> <p><a href="http://groovy.codehaus.org/Groovy+Beans" rel="nofollow">"In Groovy, fields and properties have been merged so that they act and look the same."</a></p> http://stackoverflow.com/questions/1444924/grails-supplying-data-to-a-global-ui-element/1447072#1447072 0 Answer by Ted Naleid for Grails: Supplying Data to a Global UI Element Ted Naleid 2009-09-18T22:22:20Z 2009-09-18T22:22:20Z <p>You want to put it in grails-app\views\layouts\main.gsp. That's the default layout that most generated code (and likely most examples that you'll see) will use. </p> <p>Check out the <a href="http://grails.org/doc/latest/guide/6.%20The%20Web%20Layer.html#6.2.4%20Layouts%20with%20Sitemesh" rel="nofollow">sitemesh</a> section of the grails documentation.</p> http://stackoverflow.com/questions/1354719/grails-controller-methods/1355261#1355261 3 Answer by Ted Naleid for Grails controller methods Ted Naleid 2009-08-31T00:02:21Z 2009-08-31T00:02:21Z <p>Everything Burt said is correct. In addition, the reason that you'd want do do a chain (if you have a model) or a redirect (if you don't have a model to keep) is because both of those methods return a 302 redirect response to the browser. The browser then knows to ask for the next page.</p> <p>It then has the correct url in the header for the resulting page, rather than the url from the page where the original request was from.</p> <p>This pattern is very useful after a POST of information as it avoids all kinds of trouble with bookmarking, and resubmitting of information if the user hits refresh on the resulting page.</p> <p>Ex: if you're saving a Book and you want to render the list page if the book is successfully saved. If you just call "controller.list()" in your method, it will show the user the list of books that gets rendered, but the url bar will still say ".../book/save". This is not good for bookmarking or reloading. Instead, calling redirect/chain will send the 302 response to the browser telling it to ask for the ".../book/list" page, which it does. All of your variables (your model and other flash messages) are in flash scope so they're still available to your model/view to use and everything is happy in the world.</p> <p>This pattern is called <a href="http://en.wikipedia.org/wiki/Post/Redirect/Get" rel="nofollow">Post/Redirect/Get</a>.</p> http://stackoverflow.com/questions/1325734/grails-auto-reload-functionality-in-run-app-on-a-custom-environment/1330091#1330091 0 Answer by Ted Naleid for Grails auto reload functionality in run-app on a custom environment Ted Naleid 2009-08-25T18:24:15Z 2009-08-25T18:24:15Z <p>The flag you want is "disable.auto.recompile", ex:</p> <pre><code>grails -Dgrails.env=custom -Ddisable.auto.recompile=false run-app </code></pre> http://stackoverflow.com/questions/1298806/grails-how-to-create-dummy-data-for-unit-test/1304155#1304155 2 Answer by Ted Naleid for [grails] how to create dummy data for unit test ? Ted Naleid 2009-08-20T05:39:11Z 2009-08-20T05:39:11Z <p>BootStrap.groovy is the right place for this as the other commenters have suggested. Though I'd suggest using the <a href="http://grails.org/plugin/build-test-data" rel="nofollow">build-test-data plugin</a> to create your dummy data (disclaimer: I wrote it :).</p> <p>It makes it easy to create a bunch of data quickly and it automatically fills in the required fields that you don't specify. This makes your bootstrap data MUCH easier to maintain compared to a bunch of fixtures that need to be tweaked every time you modify your domain classes.</p> http://stackoverflow.com/questions/1285786/how-do-i-get-access-to-domain-objects-from-a-quartz-job/1286071#1286071 2 Answer by Ted Naleid for How do I get access to domain objects from a Quartz job? Ted Naleid 2009-08-17T03:43:47Z 2009-08-17T03:43:47Z <p>If you're using the grails quartz plugin, you can reference domain objects right in your job as easily as you can in Controllers or Services.</p> <pre><code>Book.get(1) Book.findByTitle("House of Leaves") </code></pre> <p>etc.</p> http://stackoverflow.com/questions/1184375/whats-the-best-way-to-build-a-queue-for-long-running-jobs-in-a-grails-app/1184916#1184916 1 Answer by Ted Naleid for What's the best way to build a queue for long-running jobs in a Grails app? Ted Naleid 2009-07-26T16:05:13Z 2009-07-26T16:05:13Z <p>I'd use the grails <a href="http://grails.org/JMS+Plugin" rel="nofollow">JMS Plugin</a> for this.</p> <p>Then you can create a service with an "onMessage" method that interacts automatically with an underlying jms provider (like <a href="https://mq.dev.java.net/" rel="nofollow">OpenMQ</a> or <a href="http://activemq.apache.org/" rel="nofollow">ActiveMQ</a>.</p> <p>It makes this kind of thing pretty easy.</p> http://stackoverflow.com/questions/1163056/using-static-hasone-property-in-grails-controller-class/1163295#1163295 3 Answer by Ted Naleid for Using static "hasOne" property in Grails controller class Ted Naleid 2009-07-22T06:00:12Z 2009-07-22T06:00:12Z <p>There isn't a "hasOne" property in GORM, it's either belongsTo:</p> <pre><code>static belongsTo = [playerForumProfile: PlayerForumProfile] </code></pre> <p>or just a regular typed definition of the attribute name if there isn't a cascading relationship implied by belongsTo:</p> <pre><code>PlayerForumProfile playerForumProfile </code></pre> <p>See the <a href="http://www.grails.org/doc/1.1.x/guide/single.html#5.2.1.1%20One-to-one" rel="nofollow">one-to-one GORM documentation</a> for details.</p> http://stackoverflow.com/questions/1133464/best-way-to-create-an-admin-section-in-grails/1140935#1140935 1 Answer by Ted Naleid for Best way to create an Admin section in Grails Ted Naleid 2009-07-17T00:14:36Z 2009-07-17T00:14:36Z <p>My preference for this is to have a separate application for admin. Stick all of your domain classes in a plugin and install that plugin into both the admin application and the consumer appilcation.</p> <p>That way, you can tweak the controllers to your hearts content and not worry about end users hitting them. Shared services can also be in the domain plugin.</p> <p>There's a special file that you can put in your grails-app/conf called BuildConfig.groovy where you can specify "local" plugins like the domain plugin that are automatically brought into the classpath without having to package/install the plugin. Makes it super easy.</p> http://stackoverflow.com/questions/1113057/mockforconstraintstests-abstract-groovy-class/1114399#1114399 0 Answer by Ted Naleid for mockForConstraintsTests abstract groovy class Ted Naleid 2009-07-11T18:51:54Z 2009-07-11T18:51:54Z <p>This is actually an issue with the way that the mockForConstraintsTests stuff works in grails rather than an issue with using that type of mock generally in groovy. </p> <p>This type of mock just isn't compatible with the mocks that are being created by the mockForConstraintsTests. If you want to use this library, John is correct about just creating and passing in a simple concrete impl of the class.</p> <p>I'm actually not a big fan of the constraint mocking stuff that's in recent versions of grails as it isn't "real" and so much of the mocked out stuff is different compared to the actual code that gets run when connecting to a real database. I prefer to use integration tests to test out this kind of constraint.</p> <p>If you put your same test class in the integration tests and remove the mockForConstraintsTests call, your code will work:</p> <pre><code>package toplevel.domain import grails.test.* class PartyTests extends GrailsUnitTestCase { Party party protected void setUp() { super.setUp() party = [:] as Party } protected void tearDown() { super.tearDown() } void testNullRolesIsValid() { party.roles = null assertTrue "The roles should be nullable", party.validate() } } </code></pre> <p>results: </p> <pre><code>Running 1 integration test... Running test PartyTests...PASSED Tests Completed in 226ms ... ------------------------------------------------------- Tests passed: 1 Tests failed: 0 ------------------------------------------------------- </code></pre> http://stackoverflow.com/questions/1111037/unit-testing-abstract-classes-in-groovy/1112591#1112591 4 Answer by Ted Naleid for Unit testing Abstract classes in Groovy Ted Naleid 2009-07-11T00:37:29Z 2009-07-11T00:37:29Z <p>One cool thing about groovy (among many) is that you can use a map of method names with closures as values to mock out a class. This includes abstract classes.</p> <pre><code>abstract class Foo { def foo() { return bar() + 1 } abstract int bar() } def fooInst = [bar: {-&gt; return 1 }] as Foo assert 2 == fooInst.foo() </code></pre> http://stackoverflow.com/questions/1092814/continuously-poll-a-rest-service-in-grails/1095533#1095533 4 Answer by Ted Naleid for Continuously poll a REST service in Grails Ted Naleid 2009-07-08T00:25:49Z 2009-07-08T00:25:49Z <p>A cron job using quartz would be really easy to implement. The quartz plugin is very easy to use (just install it and then "grails create-job Foo"). Inside the task, you can use a cron expression (or a number of other ways) that will cause the job to get executed based on the schedule.</p> <p>Depending on a few things, the GET expression is also very easy to write. Depending on the service you're trying to hit it could be as easy as:</p> <pre><code>def result = new URL("http://google.com").text // parse result depending on what it is </code></pre> http://stackoverflow.com/questions/1060919/how-come-the-unix-locate-command-still-shows-files-folders-that-arent-there-any/1061559#1061559 1 Answer by Ted Naleid for How come the unix locate command still shows files/folders that aren't there any more? Ted Naleid 2009-06-30T03:19:32Z 2009-06-30T03:19:32Z <p>The other answers are correct about needing to update the locate database. I've got this alias to update my locate DB:</p> <pre><code>alias update_locate='sudo /usr/libexec/locate.updatedb' </code></pre> <p>I actually don't use locate all that much anymore now that I've found <a href="http://www.oreillynet.com/pub/a/mac/2006/01/04/mdfind.html" rel="nofollow">mdfind</a>. It uses the spotlight file index which OSX is much better at keeping up to date compared to the locatedb. It also has quite a bit more power in what it can search from the command line.</p> http://stackoverflow.com/questions/1040596/grails-validation-of-a-list-objects/1041412#1041412 1 Answer by Ted Naleid for Grails validation of a list objects Ted Naleid 2009-06-24T22:56:44Z 2009-06-24T22:56:44Z <p>If I'm understanding the question correctly, you want the error to appear on the Item domain object (as an error for the extraRecipients property, instead of letting the cascading save throw a validation error on the individual Contact items in extraRecipients, right?</p> <p>If so, you can use a <a href="http://grails.org/doc/1.1.1/ref/Constraints/validator.html" rel="nofollow">custom validator</a> in your Item constraints. Something like this (this hasn't been tested but should be close):</p> <pre><code>static constraints = { extraRecipients( validator: { recipients -&gt; recipients.every { it.validate() } } ) } </code></pre> <p>You can get fancier than that with the error message to potentially denote in the resulting error string which recipient failed, but that's the basic way to do it.</p> http://stackoverflow.com/questions/1026455/why-does-findallby-fail-when-using-three-conditions-in-grails-gorm/1030583#1030583 4 Answer by Ted Naleid for Why does findAllBy* fail when using three conditions in Grails/GORM? Ted Naleid 2009-06-23T04:08:48Z 2009-06-23T04:08:48Z <p>Nope, not currently. It's limited to 2 conditions at the moment. For more than 2 look at the criteria builder or the findAllWhere methods.</p> http://stackoverflow.com/questions/1029482/how-have-you-or-have-you-learned-keyboard-shortcut-navigation/1030582#1030582 1 Answer by Ted Naleid for How have you (or HAVE you) learned keyboard shortcut navigation? Ted Naleid 2009-06-23T04:07:00Z 2009-06-23T04:07:00Z <p>When I was starting on the Mac, I used <a href="http://www.macility.com/products/keycue/" rel="nofollow">keycue</a> to help out. It presents a quick summary of all of the shortcuts for the current app. </p> <p>For intellij, there's a plugin called "keypromoter" that will flash the shortcut on the screen for an action you did on the mouse. If you use a mouse action too many times, it asks you if you'd like to assign a new shortcut to it.</p> http://stackoverflow.com/questions/1010698/groovy-string-concatenation/1016219#1016219 2 Answer by Ted Naleid for Groovy String Concatenation Ted Naleid 2009-06-19T03:22:29Z 2009-06-19T03:22:29Z <p>I think it can be a lot easier in groovy than the currently accepted answer. The collect and join methods are built for this kind of thing. Join automatically takes care of concatenation and also does not put the trailing comma on the string</p> <pre><code>def names = row.column.collect { it.attributes()['name'] }.join(",") def values = row.column.collect { it.values() }.join(",") def result = "INSERT INTO tablename($names) VALUES($values)" </code></pre> http://stackoverflow.com/questions/997345/groovy-spread-dot-operator/999253#999253 3 Answer by Ted Naleid for Groovy spread-dot operator Ted Naleid 2009-06-16T01:32:02Z 2009-06-16T01:32:02Z <p>The short answer is that <a href="http://groovy.codehaus.org/api/org/codehaus/groovy/runtime/DefaultGroovyMethods.html#getAt(java.util.Collection,%20java.lang.String)" rel="nofollow">DefaultGroovyMethods adds a "getAt" method to all Collections</a> that iterates through the Collection and collects the property value for each. </p> <p>If you're interested in the long answer, I wrote up a <a href="http://naleid.com/blog/2008/12/24/groovy-spread-operator-optional-for-properties-plus-a-peek-into-the-sausage-factory/" rel="nofollow">blog post that dives down the metaClass rabbit hole on this exact topic</a> a while ago.</p> http://stackoverflow.com/questions/994207/strange-unknown-property-error-in-grails/999201#999201 1 Answer by Ted Naleid for Strange 'Unknown Property' error in grails Ted Naleid 2009-06-16T01:11:15Z 2009-06-16T01:11:15Z <p>Looks like your Trip class doesn't have an "airline" property.</p> <p>If I have the following classes, it works fine:</p> <pre><code>// grails-app/domain/Trip.groovy class Trip { String name static belongsTo = [airline: Airline] String toString() { name } } // grails-app/domain/Airline.groovy class Airline { String name static hasMany = [trips: Trip] String toString() { name } } </code></pre> <p>Then open up "grails console" and run this code:</p> <pre><code>Trip t = new Trip(name: "my trip") t.airline = new Airline(name: "Delta") assert "Delta" == t.airline.name </code></pre> <p>Check out the <a href="http://grails.org/doc/1.1.1/guide/5.%20Object%20Relational%20Mapping%20(GORM).html#5.2.1.2%20One-to-many" rel="nofollow">One-to-many</a> grails docs for more info.</p> http://stackoverflow.com/questions/303512/hidden-features-of-groovy/307997#307997 7 Answer by Ted Naleid for Hidden features of Groovy? Ted Naleid 2008-11-21T05:52:05Z 2009-06-15T17:20:56Z <p>Finding out what methods are on an object is as easy as asking the metaClass:</p> <pre><code>"foo".metaClass.methods.name.sort().unique() </code></pre> <p>prints: </p> <pre><code>["charAt", "codePointAt", "codePointBefore", "codePointCount", "compareTo", "compareToIgnoreCase", "concat", "contains", "contentEquals", "copyValueOf", "endsWith", "equals", "equalsIgnoreCase", "format", "getBytes", "getChars", "getClass", "hashCode", "indexOf", "intern", "lastIndexOf", "length", "matches", "notify", "notifyAll", "offsetByCodePoints", "regionMatches", "replace", "replaceAll", "replaceFirst", "split", "startsWith", "subSequence", "substring", "toCharArray", "toLowerCase", "toString", "toUpperCase", "trim", "valueOf", "wait"] </code></pre> http://stackoverflow.com/questions/951262/groovy-parent-child-private-field-access-weirdness-with-closure/954219#954219 0 Answer by Ted Naleid for Groovy Parent/Child Private Field Access Weirdness With Closure Ted Naleid 2009-06-05T03:58:05Z 2009-06-05T03:58:05Z <p>This is a known bug in the current version of groovy and is targeted for being fixed in groovy 2.0. See <a href="http://jira.codehaus.org/browse/GROOVY-3073" rel="nofollow">GROOVY-3073</a>.</p> <p>It's happening because of a scoping bug in the metaclass where the closure in the first example can't see the private class level variable.</p> <p>One potential fix that gets around the issue for this situation is to declare a local alias variable in the superclass, this gets around the scoping issue in the closure. Change the constructor to this:</p> <pre><code> ParentClass(columnCount) { def valueAlias = values columnCount.times { valueAlias.add('') } } </code></pre> http://stackoverflow.com/questions/942066/speeding-up-grails-test-app/947988#947988 3 Answer by Ted Naleid for Speeding up grails test-app Ted Naleid 2009-06-04T00:21:42Z 2009-06-04T00:21:42Z <p>There aren't any hard and fast rules for speeding it up, and the performance issues that you're seeing might be specific to your app. </p> <p>If your bootstrapping is taking ~75 seconds, that sounds pretty long. I'd take a close look at whatever you have in your Bootstrap.groovy file to see if that can be slimmed down.</p> <p>Do you have any extra plugins that you might not need (or that could have a major performance penalty)?</p> <p>This might not be a possibility for you right now, but the speed improvements in grails 1.1.1/groovy 1.6.3 over grails 1.0.5/groovy 1.5.7 are fairly significant.</p> <p>Another thing that really helps me when testing, is to specify only integration tests or only unit tests if I'm workiing on one or the other:</p> <pre><code>grails test-app -unit grails test-app -integration </code></pre> <p>You can also specify a particular test class (without the "Tests" prefix), to run a single test which can really help with TDD (ex for "MyServiceTests" integration):</p> <pre><code>grails test-app -integration MyService </code></pre> <p>In grails 1.1.1, bootstrapping with 5 plugins and ~40 domain classes takes me less than 20 seconds.</p> http://stackoverflow.com/questions/1738279/how-can-i-get-this-snippet-to-work/1738433#1738433 Comment by Ted Naleid on How can I get this snippet to work? Ted Naleid 2009-11-17T19:49:41Z 2009-11-17T19:49:41Z the resolve strategy doesn't only work with properties, otherwise calling &quot;println size()&quot; in the closure wouldn’t work, but it does. This is a groovy bug and a JIRA ticket should be opened on it. def given(array,closure) { closure.resolveStrategy = Closure.DELEGATE_FIRST closure.delegate = array closure() } given([1,2,3,4,5]) { assert 5 == size() assert [5] == findAll { it &gt; 4} } http://stackoverflow.com/questions/1654770/grails-acegi-plugin-lost-password/1655035#1655035 Comment by Ted Naleid on Grails Acegi plugin lost password Ted Naleid 2009-10-31T17:40:59Z 2009-10-31T17:40:59Z This is a good starting implementation. One potential problem with it is that it automatically resets the password, even if someone else requested it, so there's the potential for a malicious user to continually hit &quot;reset password&quot; and change the user's password without them actually wanting it changed (though they'd still get the e-mail). We did something like this, but instead had a table that held one time use tokens with a short time to live that are e-mailed to reset a password. If the token isn't used, the password is unchanged. Only one token in the table per user maximum. http://stackoverflow.com/questions/1623204/grails-framework-design-patterns Comment by Ted Naleid on Grails Framework Design Patterns Ted Naleid 2009-10-26T06:13:44Z 2009-10-26T06:13:44Z This sounds like a homework question. http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621783#1621783 Comment by Ted Naleid on recommendation for choosing a new web development stack Ted Naleid 2009-10-25T19:20:22Z 2009-10-25T19:20:22Z just noticed that you mentioned the play framework in your post. I'd still suggest trying out grails using a quick prototype. http://stackoverflow.com/questions/1440166/finding-the-first-match-alternative-to-domainclass-findall0/1441643#1441643 Comment by Ted Naleid on Finding the first match - alternative to DomainClass.findAll()[0] Ted Naleid 2009-09-18T04:51:39Z 2009-09-18T04:51:39Z You could expand this pretty easily in a plugin/bootstrap by adding a zero arg find() to each domain classes metaclass that simply calls your method http://stackoverflow.com/questions/1348795/what-can-be-the-regex-for-the-following-string/1348807#1348807 Comment by Ted Naleid on what can be the regex for the following string Ted Naleid 2009-08-28T23:44:35Z 2009-08-28T23:44:35Z In groovy 1.6, findAll is idiomatic for using regular expressions, much nicer than the old matcher stuff. theString.findAll(/\b(abc_\w*)\b/) results in a list of matches in theString. http://stackoverflow.com/questions/1325734/grails-auto-reload-functionality-in-run-app-on-a-custom-environment/1330091#1330091 Comment by Ted Naleid on Grails auto reload functionality in run-app on a custom environment Ted Naleid 2009-08-26T01:05:24Z 2009-08-26T01:05:24Z Those don't get auto-loaded for you anyway? Weird, that works fine for me even without the disable.auto.recompile. Do you have something cached? If you're using firefox hit cmd-shift-R (or ctl-shift-R on windows) to reload and bypass the cache. http://stackoverflow.com/questions/1184375/whats-the-best-way-to-build-a-queue-for-long-running-jobs-in-a-grails-app/1184916#1184916 Comment by Ted Naleid on What's the best way to build a queue for long-running jobs in a Grails app? Ted Naleid 2009-07-26T16:28:23Z 2009-07-26T16:28:23Z It is definitely more complex. The main benefits would be around some of the monitoring and polling capabilities that your question alluded to some requirements around. Lots of this kind of stuff is solved in the JMS world, but there is more setup/maintenance around it. It really depends on how &quot;enterprisey&quot; your requirements are. If you don't care much about monitoring or what happens if your container goes down while it's processing, then I'd do something simpler. Just one potential option. http://stackoverflow.com/questions/1133464/best-way-to-create-an-admin-section-in-grails/1140935#1140935 Comment by Ted Naleid on Best way to create an Admin section in Grails Ted Naleid 2009-07-17T20:47:10Z 2009-07-17T20:47:10Z Nope, just let it know where the plugin is on your local disk. Here are the contents of my grails-app/conf/BuildConfig.groovy file in an application that I have my &quot;domain&quot; plugin installed into: grails.plugin.location.domain = &quot;../domain&quot; It automatically adds all of the necessary stuff to my classpath from that domain plugin when running/packaging/warring the app. (weird formatting on comments hopefully that makes sense) http://stackoverflow.com/questions/973992/how-do-i-get-the-type-class-of-a-property-of-a-grails-domain-object/974220#974220 Comment by Ted Naleid on How do I get the type (class) of a property of a Grails domain object? Ted Naleid 2009-06-10T23:51:04Z 2009-06-10T23:51:04Z There aren't any good references that I've ever seen besides the javadocs (<a href="http://grails.org/doc/1.1/api/org/codehaus/groovy/grails/commons/DefaultGrailsApplication.html" rel="nofollow">grails.org/doc/1.1/&hellip;</a>). I also find looking at the Grails sourcecode very helpful. I also use this kind of stuff heavily in the build-test-data plugin to inspect domain object constraints and automatically generate test objects that pass the constraints if you're looking for examples (<a href="http://bitbucket.org/tednaleid/grails-test-data/wiki/Home" rel="nofollow">bitbucket.org/tednaleid/grails-test-data/&hellip;</a>). http://stackoverflow.com/questions/968494/avoiding-groovy-grails-internals-while-debugging-in-intellij-idea/970556#970556 Comment by Ted Naleid on Avoiding Groovy/Grails internals while debugging in IntelliJ Idea Ted Naleid 2009-06-10T00:34:47Z 2009-06-10T00:34:47Z This is how I do it too. Just put the groovy internal package patterns here and you're good to go. http://stackoverflow.com/questions/145354/adding-custom-log-locations-to-the-os-x-console-application/895012#895012 Comment by Ted Naleid on Adding custom log locations to the OS X console application... Ted Naleid 2009-05-22T03:03:40Z 2009-05-22T03:03:40Z This didn't seem to work for me on Leopard 1.5.7, am I missing something? http://stackoverflow.com/questions/853624/is-developer-productivity-higher-on-ruby-on-rails-or-grails/855503#855503 Comment by Ted Naleid on Is developer productivity higher on Ruby on Rails or Grails? Ted Naleid 2009-05-13T14:27:01Z 2009-05-13T14:27:01Z If your standard at work is the JVM, chances are that you have people with Java experience (and probably not an equal level of ruby experience). In that situation, I'd definitely pick grails. That's my biggest reason for my preference now, the area that I work in (the midwest) has a much larger population of java devs than ruby devs and that's not likely to change anytime soon. JRuby's java integration isn't quite as strong as groovy's (no joint compiler, etc). From what I've heard of your situation, I'd pick grails. http://stackoverflow.com/questions/853624/is-developer-productivity-higher-on-ruby-on-rails-or-grails/855503#855503 Comment by Ted Naleid on Is developer productivity higher on Ruby on Rails or Grails? Ted Naleid 2009-05-13T02:20:27Z 2009-05-13T02:20:27Z Heh, I knew that, that was part of the point :). Either of the frameworks is good enough that if you're looking for a single answer and don't have any other big driving factors to pick one over the other, you can be successful. For me, where I'm at, and with the community I work in. Grails is the right answer, for someone else in different circumstances, Rails would be correct. http://stackoverflow.com/questions/751068/what-vcs-allows-me-to-add-changes-to-multiple-pending-commits-simultaneously/751217#751217 Comment by Ted Naleid on What VCS allows me to add changes to multiple pending commits simultaneously? Ted Naleid 2009-04-16T19:55:19Z 2009-04-16T19:55:19Z The shelve extension is a good place to start. It's sort of a poor mans patch queue as it only has a single patch file that it saves off to. I started using that and then moved to using mercurial queues when I got more comfortable.