User Robert Fischer - Stack Overflowmost recent 30 from stackoverflow.com2010-02-10T02:12:01Zhttp://stackoverflow.com/feeds/user/27561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1956115/hooking-into-grails-domain-object-save/1970280#19702801Answer by Robert Fischer for Hooking into Grails Domain object save()Robert Fischer2009-12-28T16:33:08Z2009-12-28T16:33:08Z<p>This is an issue of premature optimization: older versions of Groovy seriously penalized MetaClass mangling, and so GORM does not add all of its magic until it detects the need to.</p>
<p>Easiest solution is to have your plugin dependOn GORM Labs (I work around it there). The alternative solution is to trigger methodMissing manually (which would be duplicating the work I did). See the GORM Labs documentation for details on how I accomplished that.</p>
http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458043#45804362Answer by Robert Fischer for What are the things Java got right? Robert Fischer2009-01-19T15:47:19Z2009-05-11T23:43:36Z<p><strong>1. A continuity of syntax with a previously popular language.</strong> Even when Java was written, there were many technically better languages out there. Yet Java offered a syntax which was familiar enough to existing coders that they weren't frightened by it.</p>
<p><strong>2. An understanding of what business code needs, and an API to address it.</strong> Java -- at least at one time -- managed to stay one step ahead of the curve of business needs. As implementation of Java applications became more complex, the architectural pieces needing to underpin it rolled out in step. Key examples here are JMS, Javamail, java.util.concurrent.</p>
<p><strong>3. A consistent and supportive approach to open source and community dialog.</strong> This is where C# falls down and Java still consistently exceeds. Whereas MSFT has had a schizoid approach to people extending their language (<a href="http://enfranchisedmind.com/blog/2007/06/06/testdrivennet-for-visual-studio-express-get-it-while-its-hot/" rel="nofollow">case in point</a>), Java has consistently been more than supportive of community discussion and language extension.</p>
<p><strong>4. A full-featured, reliable, consistent standard library.</strong> Unlike <a href="http://enfranchisedmind.com/blog/2008/03/24/rexml-dynamic-typing-lose/" rel="nofollow">some other popular languages</a>, if you see something in the Java core API, it's going to work pretty well. It may not be a perfect implementation, but it's a good enough implementation that it's not worth reworking. And the standard library is HUGE and consistently growing.</p>
<p><strong>5. No need to compile the code for your particular machine.</strong> One of my pet peeves of non-VM languages, because having to compile code for my particular machine means I have to pull down your code and figure out how to compile it. Usually this just consists of "<em>./configure; make</em>", but the very fact I have to think about it annoys me: it's much, much nicer to just drop a JAR onto the classpath.</p>
<p><strong>6. The "bean" concept.</strong> Yeah, I know this one is kinda weird, but the concept of a "bean" in Java and the associated concept of "properties" is huge for Java's meta-programming capabilities. That concept is so powerful that if it didn't exist, we'd be forced to invent it -- think about tools like Hibernate, libraries like BeanUtils, or language structures like Groovy's GPath. All of these came from the "bean" concept.</p>
<p><strong>7. Garbage collection.</strong> Having a non-optional memory management system was undoubtably the best technical innovation of Java. Which is funny, because it was the reason all the C++ coders were certain Java would be unacceptably slow and eventually fail.</p>
<p><strong>8. A solid balance between performance and functionality.</strong> Keying off the previous idea, Java has done a good job maintaining a "fast enough" language while keeping it full-featured. With the exception of start-up time, the Sun JVM (with some help from IBM and the wider community) keeps pace or exceeds the other business languages on the market for working with large projects. Things like the garbage collector, HotSpot optimizer, and JIT are good examples of where Sun's Java impl went very, very right. And it's the reason why many languages are flocking over to the JVM.</p>
http://stackoverflow.com/questions/528332/vim-changed-behaviour-on-me-jump-to-line-is-broken/528369#5283690Answer by Robert Fischer for VIM changed behaviour on me - jump to line : is brokenRobert Fischer2009-02-09T14:36:34Z2009-02-09T14:36:34Z<p>Closing and opening vim should reset whatever you funky mode you've discovered. If not, you've got something profoundly weird going on -- vim doesn't store settings that are turned on while in the file.</p>
<p>BTW, you're totally ruining my "vim doesn't break" meme.</p>
http://stackoverflow.com/questions/289098/how-to-work-around-a-potential-performance-issue-when-using-a-grails-hasmany-rela/303741#3037411Answer by Robert Fischer for How to work around a potential performance issue when using a Grails hasMany relation?Robert Fischer2008-11-19T23:07:25Z2008-11-19T23:07:25Z<p>There is no order ensured by Hibernate/GORM in the default mapping. Therefore, it doesn't have to load elements from the database in order to do the sorting. You will have your hands on a bunch of ids, but that's that extent of it.</p>
<p>See 19.5.2:
<a href="http://www.hibernate.org/hib_docs/reference/en/html/performance-collections.html" rel="nofollow">http://www.hibernate.org/hib_docs/reference/en/html/performance-collections.html</a></p>
<p>In general, Hibernate/GORM is going to have better performance than you expect. Unless and until you can actually prove a real-world performance issue, trust in the framework and don't worry about it.</p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/303704#303704-1Answer by Robert Fischer for Hidden features of Groovy?Robert Fischer2008-11-19T22:53:47Z2008-11-19T22:53:47Z<p>Argument reordering with implicit arguments is another nice one.</p>
<p>This code:</p>
<pre><code>def foo(Map m=[:], String msg, int val, Closure c={}) {
[...]
}
</code></pre>
<p>Creates all these different methods:</p>
<pre><code>foo("msg", 2, x:1, y:2)
foo(x:1, y:2, "blah", 2)
foo("blah", x:1, 2, y:2) { [...] }
foo("blah", 2) { [...] }
</code></pre>
<p>And more. It's impossible to screw up by putting named and ordinal arguments in the wrong order/position.</p>
<p>Of course, in the definition of "foo", you can leave off "String" and "int" from "String msg" and "int val" -- I left them in just for clarity.</p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/303561#3035616Answer by Robert Fischer for Hidden features of Groovy?Robert Fischer2008-11-19T22:07:37Z2008-11-19T22:07:37Z<p>Using hashes as pseudo-objects.</p>
<pre><code>def x = [foo:1, bar:{-> println "Hello, world!"}]
x.foo
x.bar()
</code></pre>
<p>Combined with duck typing, you can go a long way with this approach. Don't even need to whip out the "as" operator.</p>
http://stackoverflow.com/questions/199556/how-can-i-port-a-legacy-java-j2ee-website-to-a-modern-scripting-language-php-pyt/219328#2193281Answer by Robert Fischer for How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)?Robert Fischer2008-10-20T18:05:01Z2008-10-20T18:05:01Z<p>A lot of the recommendations being given here are assuming you -- and just you -- are doing a full rewrite of the application. This is probably not the case, and it changes the answer quite a bit</p>
<p>If you've already got J2EE kicking around, the correct answer is Grails. It simply is: you probably already have Hibernate and Spring kicking around, and you're going to want the ability to flip back and forth between your old code and your new with a minimum amount of pain. That's exactly Groovy's forte, and it is even smoother than JRuby in this regards.</p>
<p>Also, if you've already got a J2EE app kicking around, you've already got Java developers kicking around. In that case, learning Groovy is like falling off a ladder -- literally. With the exception of anonymous inner classes, Groovy is a pure superset of Java, which means that you can write Java code, call it Groovy, and be done with it. As you become increasingly comfortable with the nicities of Groovy, you can integrate them into your Java-ish Groovy code. Before too long, you'll be writing very Groovy code, and not even really have realized the transition.</p>
http://stackoverflow.com/questions/216624/favorite-non-esoteric-programming-language/219318#2193181Answer by Robert Fischer for Favorite (non-esoteric) Programming LanguageRobert Fischer2008-10-20T17:58:45Z2008-10-20T17:58:45Z<p>What language I use for personal projects depends on the context. If it's a web project, <strong>Groovy/Grails</strong> (like Ruby/Rails, but without the constant breaking or spelunking into the innards of the framework). <strong>Perl</strong> still dominates in the world of system administration and command-line interfaces (Ruby sacrificed in this respect to be a more application-friendly language). For knocking out a programmatic demonstration of a mathematical or programming idea, I still use <strong>OCaml</strong> (implied static typing is awesome, and keeps me from having to write a million unit tests to make sure I didn't do typoes).</p>
<p>Of the three, OCaml matches my way of thinking the best: I <a href="http://enfranchisedmind.com/blog/2008/07/07/rubymn-presentation-of-ocaml/" rel="nofollow">had my mind warped by OCaml</a> and never really recovered. Notably, I started my career doing C++ and Lisp (emacs hacking), yet it took OCaml for me to really grok functional programming. Also notable is that my undergraduate degree is in math, so OCaml's syntax was a lay-up for me.</p>
http://stackoverflow.com/questions/217437/have-a-favorite-custom-grails-tag/219298#2192981Answer by Robert Fischer for Have a favorite custom Grails tag?Robert Fischer2008-10-20T17:51:03Z2008-10-20T17:51:03Z<p>I have a "fmt:relDate" tag that gives you Twitter-like relative dates "3 days ago", "less than 30 seconds ago", etc., with the real time as a tooltip.</p>
<p>The current implementation is basically a gigantic chain of if/then statements with the boundaries that I like. A binary-search based algorithm would be better (in the sense of "more efficient"), and the current implementation has my personal preferences encoded into it, so I'm reluctant to share the tag.</p>
http://stackoverflow.com/questions/198936/best-practices-for-grails-index-page/198953#1989533Answer by Robert Fischer for Best practices for grails index pageRobert Fischer2008-10-13T20:39:41Z2008-10-13T20:39:41Z<p><strong>The good answer:</strong> If you need to populate a model for the index page, it's time to change from using a straight index.gsp to an index controller.</p>
<p><strong>The evil answer:</strong> If you create a filter whose controller is '*', it'll get executed even for static pages.</p>
http://stackoverflow.com/questions/121665/how-to-pipe-stdout-from-a-groovy-method-into-a-string/198786#1987860Answer by Robert Fischer for How to pipe stdout from a groovy method into a stringRobert Fischer2008-10-13T19:44:12Z2008-10-13T19:44:12Z<p>I'm not sure what you mean by "appending the output to a string", but you can print to standard out using "print" or "println".</p>
http://stackoverflow.com/questions/198365/how-do-i-get-at-the-goodies-in-my-grails-config-groovy-at-runtime/198541#1985415Answer by Robert Fischer for How do I get at the goodies in my Grails Config.groovy at runtime?Robert Fischer2008-10-13T18:31:18Z2008-10-13T18:57:57Z<p>danb is on the right track. However, life gets a bit easier on your fingers if you do a nicer import:</p>
<pre><code>import org.codehaus.groovy.grails.commons.ConfigurationHolder as CH
println CH.config.grails.serverURL
</code></pre>
http://stackoverflow.com/questions/136098/grails-1-0-3-console-reports-premature-end-of-file/198641#1986411Answer by Robert Fischer for Grails 1.0.3 console reports 'premature end of file'Robert Fischer2008-10-13T18:56:12Z2008-10-13T18:56:12Z<p>Upgrading to a 1.0.4 snapshot is probably the best way to deal with this issue. Check out the instructions under "Grails Development Builds" at <a href="http://grails.org/Download" rel="nofollow">the Grails Download page</a>.</p>
<p>It can also be ignored without too much difficulty.</p>
http://stackoverflow.com/questions/18538/shortcut-for-creating-a-map-from-a-list-in-groovy/198614#1986147Answer by Robert Fischer for shortcut for creating a Map from a List in groovy?Robert Fischer2008-10-13T18:48:46Z2008-10-13T18:48:46Z<p>Check out "inject". Real functional programming wonks call it "fold".</p>
<pre><code>columns.inject([:]) { memo, entry ->
memo[entry.name] = entry.val
return memo
}
</code></pre>
<p>And, while you're at it, you probably want to define methods as Categories instead of right on the metaClass. That way, you can define it once for all Collections:</p>
<pre><code>class PropertyMapCategory {
static Map mapProperty(Collection c, String keyParam, String valParam) {
return c.inject([:]) { memo, entry ->
memo[entry[keyParam]] = entry[valParam]
return memo
}
}
}
</code></pre>
<p>Example usage: </p>
<pre><code>use(PropertyMapCategory) {
println columns.mapProperty('name', 'val')
}
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/303704#303704Comment by Robert Fischer on Hidden features of Groovy?Robert Fischer2010-01-04T21:17:49Z2010-01-04T21:17:49ZI'm confused as to what you think I said that implied different.http://stackoverflow.com/questions/1956115/hooking-into-grails-domain-object-save/1956261#1956261Comment by Robert Fischer on Hooking into Grails Domain object save()Robert Fischer2009-12-28T22:06:04Z2009-12-28T22:06:04Z<i>If</i> it's actually part of a conceptually larger unit of work and <i>if</i> there is no "owning" domain object, then that's fine to drop that into a service. But to answer "I want to extend what 'save' means for domain objects" with "create a service!" is a hack, not an answer.http://stackoverflow.com/questions/1956115/hooking-into-grails-domain-object-save/1964700#1964700Comment by Robert Fischer on Hooking into Grails Domain object save()Robert Fischer2009-12-28T16:39:03Z2009-12-28T16:39:03ZShawn and his Audit Logging plugin rocks.http://stackoverflow.com/questions/1956115/hooking-into-grails-domain-object-save/1960256#1960256Comment by Robert Fischer on Hooking into Grails Domain object save()Robert Fischer2009-12-28T16:38:18Z2009-12-28T16:38:18ZDon't do this: I'm pretty sure it's not going to work the way you want.
For one thing, it seems like new Object().save() will be an infinite recursion. For another, if you call new MyDomainObject().save() before calling some other call, you'll not trigger MethodMissing (see my answer), which means you won't be saving things.
This is just call kinds of evil and bad. http://stackoverflow.com/questions/1956115/hooking-into-grails-domain-object-save/1956493#1956493Comment by Robert Fischer on Hooking into Grails Domain object save()Robert Fischer2009-12-28T16:36:11Z2009-12-28T16:36:11Z+1 — you do need to handle all three map implementations. Which is kinda annoying.
The reason the save stuff is commented out in GORM Labs is because it got into Grails 1.2, so it's not necessary. I should just wipe it at this point. And provide some better hooks into extending GORM.http://stackoverflow.com/questions/1956115/hooking-into-grails-domain-object-save/1956261#1956261Comment by Robert Fischer on Hooking into Grails Domain object save()Robert Fischer2009-12-28T16:34:27Z2009-12-28T16:34:27ZThe idea of delegating a bunch of logic directly relating to the domain to another tier is one of the biggest annoyances in Spring, and it's why Java has a reputation for fetishisizing complexity.http://stackoverflow.com/questions/456140/are-there-compelling-reasons-not-to-use-groovy/472066#472066Comment by Robert Fischer on Are there compelling reasons not to use Groovy?Robert Fischer2009-01-29T15:06:51Z2009-01-29T15:06:51ZThere's a surprising amount of improvement in that arena, particularly if you're using a framework (like Grails).http://stackoverflow.com/questions/456140/are-there-compelling-reasons-not-to-use-groovy/456189#456189Comment by Robert Fischer on Are there compelling reasons not to use Groovy?Robert Fischer2009-01-29T15:06:17Z2009-01-29T15:06:17ZMy experience with Scala is that it is still pretty chatty with types -- and you end up having to use a <i>lot</i> of parens because of funky (and often surprising) precedence rules.http://stackoverflow.com/questions/491067/how-to-find-the-physical-path-of-a-gsp-file-in-a-deployed-grails-applicationComment by Robert Fischer on How to find the physical path of a GSP file in a deployed grails applicationRobert Fischer2009-01-29T14:49:00Z2009-01-29T14:49:00ZWhat are you trying to accomplish? I suspect that this isn't really a meaningful question in the context of a WARred up web app -- after all, you don't actually have a folder to write into.http://stackoverflow.com/questions/491067/how-to-find-the-physical-path-of-a-gsp-file-in-a-deployed-grails-application/491249#491249Comment by Robert Fischer on How to find the physical path of a GSP file in a deployed grails applicationRobert Fischer2009-01-29T14:47:22Z2009-01-29T14:47:22ZWhat does that code give you if you do a "grails prod run-war"?http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458043#458043Comment by Robert Fischer on What are the things Java got right? Robert Fischer2009-01-19T16:00:25Z2009-01-19T16:00:25Z<a href="http://en.wikipedia.org/wiki/JavaBean" rel="nofollow">en.wikipedia.org/wiki/JavaBean</a> -- see also <a href="http://www.ibm.com/developerworks/java/library/j-pg09196.html" rel="nofollow">ibm.com/developerworks/java/library/…</a>http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458025#458025Comment by Robert Fischer on What are the things Java got right? Robert Fischer2009-01-19T15:48:34Z2009-01-19T15:48:34ZI'm not sure I'm willing to say "Java got generics right" -- although I definitely agree that Java was right to adopt parametrized types.http://stackoverflow.com/questions/289098/how-to-work-around-a-potential-performance-issue-when-using-a-grails-hasmany-rela/290124#290124Comment by Robert Fischer on How to work around a potential performance issue when using a Grails hasMany relation?Robert Fischer2008-11-19T23:02:01Z2008-11-19T23:02:01ZDo you have any documentation/evidence that sorting is performed server-side for a SortedSet?