User Don - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:00:02Z http://stackoverflow.com/feeds/user/2648 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1850015/hibernate-find-duplicates 1 Hibernate: find duplicates Don 2009-12-04T22:16:56Z 2009-12-06T06:25:15Z <p>Hi,</p> <p>Assume I have the following Groovy class (or the equivalent in Java)</p> <pre><code>class User { Long id String name } </code></pre> <p>I would like to write a Hibernate query (either HQL or Criteria) which returns all the users that have at least one other user with the same name.</p> <p><strong>Update</strong></p> <p>The following query has been suggested</p> <pre><code>select min(user.id), user.name from User user group by user.name having count(user.name) &gt; 1 </code></pre> <p>However, there are a few problems with this:</p> <ul> <li>It doesn't actually return the User objects, just their id and name</li> <li>If there are 3 users with the same name, it will only return the id of one of them, whereas I want all 3</li> <li>It may not work on MySQL, which is the RDBMS I'm using.</li> </ul> <p>Thanks, Don</p> http://stackoverflow.com/questions/1841647/using-html-builders-in-grails-instead-of-gsp/1841846#1841846 1 Answer by Don for Using HTML builders in grails instead of GSP Don 2009-12-03T18:20:20Z 2009-12-03T18:20:20Z <p>I don't have a complete answer for you, but I suspect the key will be gaining access to the "view resolvers". In a normal SpringMVC app, these are configured in <code>views.properties</code> (or <code>views.xml</code>) as follows:</p> <pre><code>csv=com.example.MyCSVResolver xml=com.example.MyXMLResolver audio=com.example.MySpeechResolver </code></pre> <p>In a regular SpringMVC app, you return something like <code>new ModelAndView(myModel, 'csv')</code> from a controller action.</p> <p>This would cause the <code>CSVResolver</code> class to be invoked passing it the data in myModel. In addition to containing the data to be rendered, <code>myModel</code> would likely also contain some formatting options (e.g. column widths).</p> <p>Spring searches the views file for a key matching the view name. If it doesn't find a match, by default it just renders a JSP with the view name and passes it the model data.</p> <p>Now back to Grails....remember that Grails is really just a Groovy API over SpringMVC and most of the features of SpringMVC can be accessed from Grails. So if you can figure out how to modify the views file, just change your controller actions to return an appropriate <code>ModelAndView</code> instance, and it should work as described above.</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/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/1833480/stringbuffer-append/1833731#1833731 2 Answer by Don for StringBuffer append("") Don 2009-12-02T15:43:51Z 2009-12-02T20:35:56Z <p>If there are no further appends made to the StringBuffer the code should be rewritten as</p> <pre><code>String buff1 = "some value some value B"; </code></pre> <p>This is more concise, more readable and safer than:</p> <pre><code>StringBuffer buff1 = new StringBuffer(""); buff1.append("some value A"); buff1.append("some value B"); </code></pre> <p>I say 'safer' because a String is immutable and a StringBuffer is immutable, so there's no risk of the String accidentally being changed after construction.</p> <p><hr></p> <p><strong>Aside</strong></p> <p>It's a common misconception that "concatenating Strings in Java is bad". While it's true that you shouldn't write code like this</p> <pre><code>String buff1 = "foo"; buff1 += "some value A"; buff1 += "some value B"; </code></pre> <p>It's perfectly acceptable to write code like this:</p> <pre><code>String buff1 = "foo" + "some value A" + "some value B"; </code></pre> <p>when the concatenation is performed in a single statement the code will be optimized to:</p> <pre><code>String buff1 = "foo some value A some value B"; </code></pre> http://stackoverflow.com/questions/250688/count-immediate-child-div-elements-using-jquery 6 count immediate child div elements using jQuery Don 2008-10-30T15:47:52Z 2009-12-02T16:17:23Z <p>Hi,</p> <p>I have the following HTML node structure:</p> <pre><code>&lt;div id="foo"&gt; &lt;div id="bar"&gt;&lt;/div&gt; &lt;div id="baz"&gt; &lt;div id="biz"&gt; &lt;/div&gt; &lt;span&gt;&lt;span&gt; &lt;/div&gt; </code></pre> <p>How do I count the number of immediate children of "foo", that are of type "div". In the example above, the result should be two ("bar" and "baz").</p> <p>Cheers, Don</p> http://stackoverflow.com/questions/1767428/under-what-circumstances-does-groovy-use-abstractconcurrentmap/1829304#1829304 0 Answer by Don for Under what circumstances does Groovy use AbstractConcurrentMap? Don 2009-12-01T22:11:42Z 2009-12-01T22:11:42Z <p>In Groovy version 1.6.3, the following:</p> <pre><code>println [:].getClass() </code></pre> <p>prints </p> <blockquote> <p>class java.util.LinkedHashMap</p> </blockquote> <p>which indicates that a <code>LinkedHashMap</code> is the Map implementation used for literal maps.</p> http://stackoverflow.com/questions/1825424/groovy-closures-or-methods/1827035#1827035 3 Answer by Don for Groovy : Closures or Methods Don 2009-12-01T15:46:14Z 2009-12-01T16:33:28Z <p>I only use closures where I need them, i.e. I use methods by default. I do this because</p> <ul> <li><p><strong>Methods are simpler than closures.</strong> Closures have a delegate, an owner, retain access to variables that were in their local scope when created (what you call "free variables"). By default method calls within a closure are resolved by:</p> <ol> <li>Closure itself</li> <li>Closure owner</li> <li>Closure delegate</li> </ol></li> </ul> <p>But this order can be changed at runtime, and a closure's delegate can also be changed to any object.</p> <p>All of these factors combined can make some code that uses closures very tricky to grok, so if you don't need any of this complexity I prefer to eliminate it by using a method instead</p> <ul> <li><strong>A .class file is generated for each closure defined in Groovy.</strong> I have exactly zero evidence to support a claim that a regular method is more performant than a closure, but I have suspicions. At the very least, a lot of classes may cause you to run out of PermGen memory space - this used to happen to me frequently until I raised my PermGen space to about 200MB</li> </ul> <p>I have no idea whether the practice I'm advocating (use methods by default and closures only when you need them) is widely considered a "best practice", so I'm curious to hear what others think.</p> http://stackoverflow.com/questions/1823359/programming-tutorial-where-the-information-is-the-code/1823387#1823387 0 Answer by Don for Programming tutorial where the information _is_ the code? Don 2009-12-01T00:53:51Z 2009-12-01T00:53:51Z <p>The online documentation for OpenLaszlo has lots of example code embedded within it. Unlike most examples, these code can actually be edited, recompiled and executed in the browser, right alongside the accompanying source code and explanation. I was very impressed when I first saw this.</p> <p>An example of what I'm talking about is <a href="http://www.openlaszlo.org/lps4.5/docs/developers/tutorials/calculator.html" rel="nofollow">this tutorial</a> which builds a calculator using Laszlo.</p> http://stackoverflow.com/questions/1823117/for-each-and-pointers-in-java/1823208#1823208 0 Answer by Don for For-Each and Pointers in Java Don 2009-11-30T23:46:19Z 2009-11-30T23:46:19Z <p>You seem to misunderstand how objects/references work in Java, which is pretty fundamental to using the language effectively. However, this code here should do what you want (apologies for the lack of explanation):</p> <pre><code>ArrayList&lt;String&gt; arr = new ArrayList&lt;String&gt;(); //... fill with some values (doesn't really matter) for(int i = 0; i &lt; arr.size(); i++) { arr.set(i, " some other value "); // change the contents of the array } for(String t : arr) { System.out.println(t); } </code></pre> http://stackoverflow.com/questions/1821413/grails-searchable-plugin 0 Grails searchable plugin Don 2009-11-30T18:08:16Z 2009-11-30T23:28:14Z <p>Hi,</p> <p>In my Grails app, I'm using the Searchable plugin for searching/indexing. I want to write a Compass/Lucene query that involves multiple domain classes. Within that query when I want to refer to the id of a class, I can't simply use 'id' because all classes have an 'id' property. Currently, I work around this problem by adding the following property to a class Foo</p> <pre><code>public Long getFooId() { return id } static transients = ['fooId'] </code></pre> <p>Then when I want to refer to the id of Foo within a query I use 'fooId'. Is there a way I can provide an alias for a property in the searchable mapping rather than adding a property to the class?</p> http://stackoverflow.com/questions/1821413/grails-searchable-plugin/1823132#1823132 0 Answer by Don for Grails searchable plugin Don 2009-11-30T23:28:14Z 2009-11-30T23:28:14Z <p>I finally discovered that this is the way to do it:</p> <pre><code>static searchable = { id: name 'fooId' } </code></pre> http://stackoverflow.com/questions/1817524/generic-arrays-in-java/1817565#1817565 4 Answer by Don for Generic Arrays in Java Don 2009-11-30T02:12:23Z 2009-11-30T02:12:23Z <p>The cast you're attempting</p> <pre><code>(T[])(new Object[tableSize]); </code></pre> <p>fails, because the items in the array are instances of Object. Object does not extend <code>Comparable&lt;String&gt;</code>, so the cast (T[]) fails because T is defined as:</p> <pre><code>T extends Comparable&lt;String&gt; </code></pre> <p>To resolve this problem either:</p> <ul> <li>Instantiate the array so that it's items are instances of some class that does extend <code>Comparable&lt;String&gt;</code></li> <li>Change <code>hashTable</code> from an Array (which is not a generic type), to a generic collection type, e.g. <code>List&lt;T&gt; hashTable = new ArrayList&lt;T&gt;(tableSize&gt;)</code></li> </ul> http://stackoverflow.com/questions/1765475/grails-log4j-configuration 1 Grails log4j configuration Don 2009-11-19T18:23:53Z 2009-11-28T03:32:21Z <p>Hi,</p> <p>I've repeatedly had problems with the DSL introduced by Grails in version 1.1 for configuring Log4J. My current configuration looks like this:</p> <pre><code>log4j = { debug 'com.mypackages' appenders { console name: 'stdout', layout: pattern(conversionPattern: '%d{dd-MM-yyyy HH:mm:ss,SSS} %5p %c{1} - %m%n') rollingFile name: 'hibeFile', file: "hibeFile", maxFileSize: '500KB' } // By default, messages are logged at the error level to both the console and hibeFile root { error 'stdout', 'hibeFile' additivity = true } } </code></pre> <p>The intention here is:</p> <ul> <li>Log <code>com.mypackages</code> at the debug level and all others at the error level</li> <li>Log all output to a file named hibeFile and the console</li> </ul> <p>This works fine when I run the application or the integration tests. However, when I run the unit tests no logging appears either in the console, or in the "System.out" or "System.err" links shown in the Grails test report. How can I see my logs when running unit tests?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1808920/search-subset-of-objects-using-compass-lucene 0 Search subset of objects using Compass/Lucene Don 2009-11-27T13:56:06Z 2009-11-27T20:19:07Z <p>Hi,</p> <p>I'm using the searchable plugin for Grails (which provides an API for Compass, which is itself an API over Lucene). I have an Order class that I would like to search but, I don't want to search all the instances of Order, just a subset of them. Something like this:</p> <pre><code>// This is a Hibernate/GORM call List&lt;Order&gt; searchableOrders = Customer.findAllByName("Bob").orders // Now search only these orders with the searchable plugin - something like searchableOrders.search("name: foo") </code></pre> <p>In reality the relational query to get the searchableOrders is more complex than this, so I can't do the entire query (Hibernate + compass) in compass alone. Is there a way to search only a subject of instances of a particular class using Compass/Lucene.</p> http://stackoverflow.com/questions/1658697/java-vector-and-thread-safety/1809197#1809197 0 Answer by Don for java Vector and thread safety Don 2009-11-27T14:49:22Z 2009-11-27T14:49:22Z <p>There's no point whatsoever doing anything with a Vector in a <code>synchronized</code> block, because a Vector is already thread-safe. In fact, this practice could possibly lead to deadlocks/starvation, as your synchronized block may not be acquiring the same lock as that used internally by Vector.</p> <p>In short, if you need a thread-safe implementation of List, there are much better options available in the JDK libraries. For example, if you need a thread-safe List which is frequently read and infrequently written (a common case) <code>CopyOnWriteArrayList</code> generally offers better performance than Vector.</p> http://stackoverflow.com/questions/1772276/grails-bind-request-parameters-to-enum 0 Grails bind request parameters to enum Don 2009-11-20T18:02:45Z 2009-11-27T14:33:20Z <p>Hi,</p> <p>My Grails application has a large number of enums that look like this:</p> <pre><code>public enum Rating { BEST("be"), GOOD("go"), AVERAGE("av"), BAD("ba"), WORST("wo") final String id private RateType(String id) { this.id = id } static public RateType getEnumFromId(String value) { values().find {it.id == value } } } </code></pre> <p>If I have a command object such as this:</p> <pre><code>class MyCommand { Rating rating } </code></pre> <p>I would like to (for example) automatically convert a request parameter with value "wo" to Rating.WORST.</p> <p>The procedure for defining custom converters is described <a href="http://stackoverflow.com/questions/963922/grails-date-unmarshalling">here</a> (in the context of converting Strings to Dates). Although this procedure works fine, I don't want to have to create a class implementing PropertyEditorSupport for each of my enums. Is there a better alternative?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1772276/grails-bind-request-parameters-to-enum/1809123#1809123 1 Answer by Don for Grails bind request parameters to enum Don 2009-11-27T14:33:20Z 2009-11-27T14:33:20Z <p>I found a solution I'm pretty happy with.</p> <p><strong>Step 1:</strong> Create an implementation of PropertyEditorSupport to convert text to/from the relevant Enum</p> <pre><code>public class EnumEditor extends PropertyEditorSupport { private Class&lt;? extends Enum&lt;?&gt;&gt; clazz public EnumEditor(Class&lt;? extends Enum&lt;?&gt;&gt; clazz) { this.clazz = clazz } public String getAsText() { return value?.id } public void setAsText(String text) { value = clazz.getEnumFromId(text) } } </code></pre> <p><strong>Step 2:</strong> Define a class that registers EnumEditor as a converter for the various enum classes. To change the list of enum classes that are bindable by id, just modify <code>BINDABLE_ENUMS</code></p> <pre><code>public class CustomPropertyEditorRegistrar implements PropertyEditorRegistrar { private static final String REQUIRED_METHOD_NAME = 'getEnumFromId' // Add any enums that you want to bind to by ID into this list private static final BINDABLE_ENUMS = [Rating, SomeOtherEnum, SomeOtherEnum2] public void registerCustomEditors(PropertyEditorRegistry registry) { BINDABLE_ENUMS.each {enumClass -&gt; registerEnum(registry, enumClass) } } /** * Register an enum to be bound by ID from a request parameter * @param registry Registry of types eligible for data binding * @param enumClass Class of the enum */ private registerEnum(PropertyEditorRegistry registry, Class&lt;? extends Enum&lt;?&gt;&gt; enumClass) { boolean hasRequiredMethod = enumClass.metaClass.methods.any {MetaMethod method -&gt; method.isStatic() &amp;&amp; method.name == REQUIRED_METHOD_NAME &amp;&amp; method.parameterTypes.size() == 1 } if (!hasRequiredMethod) { throw new MissingMethodException(REQUIRED_METHOD_NAME, enumClass, [String].toArray()) } registry.registerCustomEditor(enumClass, new EnumEditor(enumClass)) } } </code></pre> <p><strong>Step 3:</strong> Make Spring aware of the registry above by defining the following Spring bean in <code>grails-app/conf/spring/resources.grooovy</code></p> <pre><code>customPropertyEditorRegistrar(CustomPropertyEditorRegistrar) </code></pre> http://stackoverflow.com/questions/306732/how-to-check-if-a-variable-exists-in-a-freemarker-template 0 How to check if a variable exists in a FreeMarker template? Don 2008-11-20T20:21:42Z 2009-11-27T10:23:39Z <p>Hi,</p> <p>I have a Freemarker template which contains a bunch of placeholders for which values are supplied when the template is processed. I want to conditionally include part of the template if the userName variable is supplied, something like:</p> <pre><code>[#if_exists userName] Hi ${userName}, How are you? [/#if_exists] </code></pre> <p>However, the FreeMarker manual seems to indicate that if_exists is deprecated, but I can't find another way to achieve this. Of course, I could simple providing an additional boolean variable isUserName and use that like this:</p> <pre><code>[#if isUserName] Hi ${userName}, How are you? [/#if] </code></pre> <p>But if there's a way of checking whether userName exists then I can avoid adding this extra variable.</p> <p>Cheers, Don</p> http://stackoverflow.com/questions/1777069/web-design-examples-by-element-type 0 web design examples by element type Don 2009-11-21T22:58:34Z 2009-11-25T20:31:21Z <p>Hi,</p> <p>I'm trying to improve the style of a website. I'm looking for some examples of beautifully styled HTML elements (tables, lists, headings, etc.) that I can draw on for inspiration, or just copy and paste verbatim (if that's permitted).</p> <p>Some explanation of how the styling was achieved would be nice, but is not absolutely necessary, as I can always use Firebug to reverse engineer the design. Ideally the designs should:</p> <ul> <li>Be compatible with all modern browsers (which excludes IE6 IMO)</li> <li>Use little or no JavaScript</li> <li>Be valid XHTML transitional/strict</li> </ul> <p><strong>EDIT:</strong> Ideally, the site(s) should provide an easy way to view <strong>a list of styles for a particular element type</strong> (ordered list, table, heading, etc.)</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1797478/groovy-literal-stringbuilder-stringbuffer 1 Groovy literal StringBuilder/StringBuffer Don 2009-11-25T14:56:51Z 2009-11-25T16:35:23Z <p>Hi,</p> <p>Groovy supports a literal syntax for creating a StringBuilder/StringBuffer instead of the usual</p> <pre><code>def sb = new StringBuilder() </code></pre> <p>However, I can't seem to remember (or find on Google) the correct syntax.</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1792134/a-colleague-said-dont-use-java-util-vector-anymore-why-not/1792554#1792554 1 Answer by Don for A colleague said don't use java.util.Vector anymore - why not? Don 2009-11-24T20:00:13Z 2009-11-24T20:00:13Z <p>Use <code>ArrayList when</code> you need a <code>List</code> implementation but don't need thread safety, and use <code>CopyOnWriteArrayList</code> when you need a <code>List</code> implementation that is thread safe.</p> http://stackoverflow.com/questions/1792244/argh-cant-get-spring-to-log-sql/1792290#1792290 1 Answer by Don for argh - can't get spring to log sql Don 2009-11-24T19:15:16Z 2009-11-24T19:15:16Z <p>You could try using <a href="http://www.p6spy.com/" rel="nofollow">P6Spy</a>. This is a JDBC driver that logs all SQL statements before passing them onto the real JDBC driver. Some information about how to integrate it with Spring is available <a href="http://swik.net/Spring/Spring%27s+corner/Integrate+P6Spy+with+Spring/vq6" rel="nofollow">here</a>.</p> <p>Another alternative is to enable logging at the database level, though this probably won't help much if multiple processes are accessing the DB simultaneously.</p> http://stackoverflow.com/questions/1787170/mysqlcant-set-a-nullable-column-to-null 1 MySqlcan't set a nullable column to null Don 2009-11-24T01:04:53Z 2009-11-24T01:09:18Z <p>Hi,</p> <p>I'm trying to insert a row into a table named <code>Booklets</code> which has a nullable column <code>BookletSubjectID</code>. The insert is failing because </p> <blockquote> <p>'BookletSubjectID' cannot be null</p> </blockquote> <p>Here's my MySQL session copied verbatim. I must be missing something really obvious, but can't see it.</p> <pre><code>mysql&gt; desc Booklets; +----------------------+---------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +----------------------+---------------+------+-----+---------+----------------+ | BookletID | int(11) | NO | PRI | NULL | auto_increment | | MemberID | int(11) | NO | MUL | NULL | | | Name | varchar(255) | YES | | NULL | | | Description | varchar(1000) | YES | | NULL | | | RelationshipTypeID | varchar(12) | YES | MUL | NULL | | | RateTypeID | varchar(2) | YES | MUL | NULL | | | PrivTypeID | varchar(2) | NO | MUL | NULL | | | PhotoAlbumID | int(11) | YES | MUL | NULL | | | VideoAlbumID | int(11) | YES | MUL | NULL | | | BookletSubjectTypeID | varchar(2) | NO | MUL | NULL | | | BookletSubjectID | int(11) | YES | MUL | NULL | | | Deleted | tinyint(1) | NO | | 0 | | | Credt | datetime | NO | | NULL | | | Updt | datetime | YES | | NULL | | +----------------------+---------------+------+-----+---------+----------------+ 14 rows in set (0.00 sec) mysql&gt; INSERT Booklets (MemberID, Name, PrivTypeID, BookletSubjectTypeID, Deleted, Credt) VALUES (546502, 'dddd','pu', 'no', 1, NOW()); ERROR 1048 (23000): Column 'BookletSubjectID' cannot be null </code></pre> <p>Thanks, Don</p> http://stackoverflow.com/questions/764416/why-would-one-use-groovy-over-java/1753613#1753613 0 Answer by Don for Why would one use Groovy over Java? Don 2009-11-18T04:21:02Z 2009-11-23T20:33:04Z <p>The Groovy language has a wide range of features that are sadly lacking in Java. These include:</p> <ul> <li>Properties</li> <li>Closures</li> <li>Metaprogramming</li> <li>Multi-line strings</li> <li>String interpolation</li> <li>Mixins/Categories</li> <li>Named arguments</li> <li>Default arguments</li> <li>Collection literals</li> <li>Operator overloading</li> <li>GPath expressions</li> <li>Additional operators, e.g. '?.' (a null-safe version of Java's '.' operator)</li> </ul> <p>And lots more that I can't think of at the moment. The net result is that to accomplish a given task in Groovy generally takes a lot less code than in Java. Much of the code that you don't have to write when using Groovy could be considered 'boilerplate'.</p> <p>It's not only the extra language features offered by Groovy, it's also the additional <a href="http://groovy.codehaus.org/groovy-jdk/" rel="nofollow">methods Groovy adds</a> to the most commonly used JDK classes. These enable one to make the most of Groovy's language features (closures, in particular) when working with Java library classes.</p> <p>The dynamic nature of Groovy also reduces the amount of code, though the advantages/disadvantages of static and dynamic typing is a debate for another day.</p> http://stackoverflow.com/questions/1202422/lucene-query-syntax 1 Lucene Query Syntax Don 2009-07-29T19:11:32Z 2009-11-23T15:19:41Z <p>Hi,</p> <p>I'm trying to use Lucene to query a domain that has the following structure</p> <pre><code>Student 1-------* Attendance *---------1 Course </code></pre> <p>The data in the domain is summarised below</p> <pre><code>Course.name Attendance.mandatory Student.name ------------------------------------------------- cooking N Bob art Y Bob </code></pre> <p>If I execute the query <code>"courseName:cooking AND mandatory:Y"</code> it returns Bob, because Bob is attending the cooking course, and Bob is also attending a mandatory course. However, what I <em>really</em> want to query for is "students attending a mandatory cooking course", which in this case would return nobody.</p> <p>Is it possible to formulate this as a Lucene query? I'm actually using Compass, rather than Lucene directly, so I can use either <a href="http://www.compass-project.org/docs/2.1.0RC/api/org/compass/core/CompassQueryBuilder.html" rel="nofollow">CompassQueryBuilder</a> or Lucene's query language.</p> <p>For the sake of completeness, the domain classes themselves are shown below. These classes are Grails domain classes, but I'm using the standard Compass annotations and Lucene query syntax.</p> <pre><code>@Searchable class Student { @SearchableProperty(accessor = 'property') String name static hasMany = [attendances: Attendance] @SearchableId(accessor = 'property') Long id @SearchableComponent Set&lt;Attendance&gt; getAttendances() { return attendances } } @Searchable(root = false) class Attendance { static belongsTo = [student: Student, course: Course] @SearchableProperty(accessor = 'property') String mandatory = "Y" @SearchableId(accessor = 'property') Long id @SearchableComponent Course getCourse() { return course } } @Searchable(root = false) class Course { @SearchableProperty(accessor = 'property', name = "courseName") String name @SearchableId(accessor = 'property') Long id } </code></pre> http://stackoverflow.com/questions/1390500/test-website-compatability-with-ie7 2 test website compatability with IE7 Don 2009-09-07T18:29:28Z 2009-11-23T09:10:11Z <p>Hi,</p> <p>I would like to see how my website renders in IE7. Unfortunately, my computer has IE8 installed, and I don't know how to downgrade to IE7. I've considered using the <a href="http://ietab.mozdev.org/" rel="nofollow">IE Tab</a> Firefox plugin but reviews seem fairly mixed and I'm not sure how accurately it emulates IE7. Any other suggestions?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1772582/java-bounded-wilcard-type 0 Java bounded wilcard type Don 2009-11-20T18:59:28Z 2009-11-20T23:25:03Z <p>Hi,</p> <p>I need to define a generic class, and the type parameter must be an enum. I think it should look something like</p> <pre><code>public class &lt;T&gt; MyClass&lt;T extends Enum&lt;T&gt;&gt; { } </code></pre> <p>But I can't seem to figure out the exact syntax. I should mention that I need a way to refer to the type (within MyClass) that it is instantiated with.</p> <p>Thanks!</p> http://stackoverflow.com/questions/946396/compile-time-checking-in-groovy 2 compile-time checking in Groovy Don 2009-06-03T18:33:58Z 2009-11-17T18:10:40Z <p>Hi,</p> <p>In Groovy types are optional so you can use either:</p> <pre><code>String foo = "foo" foo.noSuchMethod() </code></pre> <p>or</p> <pre><code>def foo = "foo" foo.noSuchMethod() </code></pre> <p>I assumed that the first example would generate a compile-time error, whereas the second would only fail at runtime. However, this doesn't appear to be the case. In my experience, a compile-time error is generated in neither case.</p> <p>Am I right in assuming then that the only benefit of declaring the type of a reference is as a form of documentation, i.e. to communicate intentions to other programmers. For example, if I write a method such as:</p> <pre><code>def capitalize(String arg) { return arg.toUpperCase() } </code></pre> <p>This communicates the type of arguments that should be passed to the function much more effectively than:</p> <pre><code>def capitalize(def arg) { return arg.toUpperCase() } </code></pre> <p>Does the Groovy compiler perform any type-checking when types are specified?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1663980/rich-domain-model-example 4 rich domain model example Don 2009-11-02T21:57:43Z 2009-11-17T09:59:16Z <p>Hi,</p> <p>I'm looking for a simple example to illustrate the benefits of using a rich domain model. Ideally, I'd like a before and after code listing (which should be as short as possible).</p> <p>The before code listing should show the problem being solved using an anaemic domain model, and a lot of fairly procedural service-layer code, and the after code listing should show the same problem being solved using a rich, object-oriented domain model.</p> <p>Ideally the code listing should be in Java or Groovy, but anything fairly similar (e.g. C#) would do.</p> <p>Thanks, Donal</p> http://stackoverflow.com/questions/1850015/hibernate-find-duplicates Comment by Don on Hibernate: find duplicates Don 2009-12-06T18:31:06Z 2009-12-06T18:31:06Z I didn't downvote your answer! Thanks for your help. http://stackoverflow.com/questions/1850015/hibernate-find-duplicates/1852912#1852912 Comment by Don on Hibernate: find duplicates Don 2009-12-06T06:24:48Z 2009-12-06T06:24:48Z Yes I have a primary key on the table, what else could the <code>Long id</code> field possibly be? http://stackoverflow.com/questions/1850015/hibernate-find-duplicates/1850076#1850076 Comment by Don on Hibernate: find duplicates Don 2009-12-05T16:46:11Z 2009-12-05T16:46:11Z Unfortunately I am using MySQL so I guess this won't work? http://stackoverflow.com/questions/1841647/using-html-builders-in-grails-instead-of-gsp Comment by Don on Using HTML builders in grails instead of GSP Don 2009-12-04T15:20:45Z 2009-12-04T15:20:45Z I'm curious to know what advantages this provides? It doesn't seem like the builder code will be any more concise that the corresponding GSP code but it will certainly be a lot more esoteric. http://stackoverflow.com/questions/1836778/groovy-metaprogramming-causes-stackoverflowerror Comment by Don on Groovy metaprogramming causes StackOverflowError Don 2009-12-03T03:59:11Z 2009-12-03T03:59:11Z You're right, it works perfectly in Groovy :( http://stackoverflow.com/questions/1834729/developing-with-tomcat/1836129#1836129 Comment by Don on Developing With Tomcat Don 2009-12-02T22:45:07Z 2009-12-02T22:45:07Z Why not indicate your gratitude by upvoting and/or accepting some answers? http://stackoverflow.com/questions/1832036/grails-appengine-file-upload-using-gaevfs Comment by Don on Grails AppEngine file upload using GAEVFS Don 2009-12-02T22:40:31Z 2009-12-02T22:40:31Z Have you considered using Gaelyk instead? It's a framework for GAE written in Groovy. http://stackoverflow.com/questions/1833480/stringbuffer-append/1833511#1833511 Comment by Don on StringBuffer append("") Don 2009-12-02T20:37:17Z 2009-12-02T20:37:17Z I consider <code>String buff1 = &quot;some value A some value B&quot;;</code> a lot more readable than the above http://stackoverflow.com/questions/1833480/stringbuffer-append/1833731#1833731 Comment by Don on StringBuffer append("") Don 2009-12-02T20:35:10Z 2009-12-02T20:35:10Z @seh - well spotted, I'll update! http://stackoverflow.com/questions/1821864/how-can-i-add-common-actions-to-controllers-without-using-inheritance/1822384#1822384 Comment by Don on How can I add common actions to controllers without using inheritance? Don 2009-12-01T17:17:18Z 2009-12-01T17:17:18Z It's better to do this kind of metaprogramming in a plugin descriptor file than in Bootstrap.groovy beccause metaprogramming in Bootstrap is not applied when the app reloads http://stackoverflow.com/questions/1301588/java-vector-or-arraylist-for-primitives/1301633#1301633 Comment by Don on Java Vector or ArrayList for Primitives Don 2009-12-01T00:05:27Z 2009-12-01T00:05:27Z +1 for introducing me to the phrase &quot;syntactic vinegar&quot; http://stackoverflow.com/questions/1823117/for-each-and-pointers-in-java/1823147#1823147 Comment by Don on For-Each and Pointers in Java Don 2009-11-30T23:37:48Z 2009-11-30T23:37:48Z I think you'll only get that exception if you add/remove items from the array while iterating http://stackoverflow.com/questions/1821775/what-are-the-differences-between-interpreted-and-statistical-languages Comment by Don on What Are The Differences Between Interpreted And Statistical Languages? Don 2009-11-30T19:17:01Z 2009-11-30T19:17:01Z @Juliet - give him a break, he's from Brazil. How good is your ability to talk about computer science in Portugese? http://stackoverflow.com/questions/1821775/what-are-the-differences-between-interpreted-and-statistical-languages Comment by Don on What Are The Differences Between Interpreted And Statistical Languages? Don 2009-11-30T19:15:03Z 2009-11-30T19:15:03Z I think what you're really trying to ask is: What is the difference between and an interpreted and a compiled language OR What is the difference between a dynamically-typed and statically-typed language. http://stackoverflow.com/questions/1820241/erlang-breaking-out-of-listsforeach-loop/1820571#1820571 Comment by Don on Erlang : Breaking out of lists:foreach "loop" Don 2009-11-30T17:47:02Z 2009-11-30T17:47:02Z Exceptions should be used to indicate exceptional conditions, not for flow control