User John Flinchbaugh - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T02:20:57Zhttp://stackoverflow.com/feeds/user/12591http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1460670/how-iterate-xml-nodes-with-groovy/1461435#14614350Answer by John Flinchbaugh for How iterate xml-nodes with Groovy ?John Flinchbaugh2009-09-22T17:26:04Z2009-09-22T17:26:04Z<p>it.@dueDate is referencing a "dueDate" attribute, not node. Second, you're looking for "2007-02-01..." in your code, which should have been "2007-02-11..." to match an actual node in your input XML, I'd guess.</p>
<p>So, this does work:</p>
<pre><code>def Input = """ <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns2:getSalesAuditsResponse xmlns:ns2="http://apidto.dto.t2.wsapi.ng.com/">
<return>
<code>0909019000004830</code>
<realOpenAmount>12</realOpenAmount>
<dueDate>2009-07-11T00:00:00+03:00</dueDate>
</return>
<return>
<code>0909119000006260</code>
<realOpenAmount>55.75</realOpenAmount>
<dueDate>2007-02-11T00:00:00+02:00</dueDate>
</return>
</ns2:getSalesAuditsResponse>
</S:Body>
</S:Envelope>
"""
def document = new groovy.util.XmlSlurper().parseText(Input);
def sa = document.depthFirst().findAll {it.dueDate == "2007-02-11T00:00:00+02:00"}
</code></pre>
<p>If I intended to modify the XML, I think I'd end up using the standard MarkupBuilder or StreamingMarkupBuilder to output new XML in the form I wanted.</p>
http://stackoverflow.com/questions/1337464/overriding-grails-views-default-codechtml-config-back-to-none0Overriding grails.views.default.codec='html' config back to 'none'John Flinchbaugh2009-08-26T21:01:19Z2009-08-27T12:08:18Z
<p>If I leave <code>grails.views.default.code='none'</code> in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: <code>${myValue?.encodeAsHTML()}</code>.</p>
<p>If I set <code>grails.views.default.codec='html"</code> in the Config.groovy, then the HTML encoding happens automatically for every expression: <code>${myValue}</code>.</p>
<p>My question: If I set the default to <code>'html'</code>, how do I get back to <code>'none'</code> for one expression when I don't want the HTML encoding behavior?</p>
http://stackoverflow.com/questions/1337464/overriding-grails-views-default-codechtml-config-back-to-none/1340652#13406520Answer by John Flinchbaugh for Overriding grails.views.default.codec='html' config back to 'none'John Flinchbaugh2009-08-27T12:08:18Z2009-08-27T12:08:18Z<p>I may have a solution. I'm not sure how accepted it is, though.</p>
<p>I can set the default codec for expressions to HTML, but then use <%=myValue%> notation in GSP instead of ${} expressions to get the unescaped values onto the page.</p>
http://stackoverflow.com/questions/1334298/running-a-script-from-groovy/1334625#13346251Answer by John Flinchbaugh for Running a script from GroovyJohn Flinchbaugh2009-08-26T13:18:15Z2009-08-26T13:18:15Z<p>Groovy added an execute() method to plain old String, so try this:</p>
<pre><code>println "ls -la".execute().text
</code></pre>
http://stackoverflow.com/questions/1051778/can-generic-xml-by-parsed-as-nicely-as-simple-xml-in-groovy1Can generic XML by parsed as nicely as simple XML in Groovy?John Flinchbaugh2009-06-27T00:16:25Z2009-08-04T00:00:01Z
<p>Given a nice, simple XML structure, XmlSlurper() can allow me to read values from it very easily.</p>
<pre><code>def xml = "<html><head><title>groovy</title></head></html>"
def html = new XmlSlurper().parseText(xml)
println html.head.title
</code></pre>
<p>Is there a way to make this simple tree navigation possible for generic (type-based, etc) XML. Ideally, in the snippet of code below, I'd like to walk the values by their <em>name</em> attribute, but instead, I have to do all this searching:</p>
<pre><code>def genxml = """
<doc>
<lst name = "head">
<str name = "title">groovy</str>
<str name = "keywords">java xml</str>
</lst>
</doc>"""
def doc = new XmlSlurper().parseText(genxml)
println doc.lst.find { it.@name == "head" }.str.find { it.@name == "title" }
</code></pre>
<p>Is there a way to walk this just as:</p>
<pre><code>println doc.head.title
</code></pre>
http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1038721#10387214Answer by John Flinchbaugh for Dynamic languages - which one should I choose?John Flinchbaugh2009-06-24T14:27:54Z2009-06-24T14:27:54Z<p>I found Groovy to be a relatively easy jump from an extensive Java background -- it's sort of a more convenient version of Java. It integrates really nicely with existing Java code as well, if you need to do that sort of thing.</p>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/306404#3064044Answer by John Flinchbaugh for Hidden features of Groovy?John Flinchbaugh2008-11-20T18:43:05Z2009-06-01T01:13:40Z<pre><code>println
"""
Groovy has multi-line strings.
Hooray!
"""
</code></pre>
http://stackoverflow.com/questions/494135/specify-order-of-fields-in-ddl-generated-from-gorm-classes/506950#5069501Answer by John Flinchbaugh for Specify order of fields in DDL generated from GORM classes?John Flinchbaugh2009-02-03T12:47:02Z2009-02-03T12:47:02Z<p>There doesn't appear to be a way to specify the ordering, but you could always create your own tables as you want them and provide name mappings in your domain classes.
You could also let GORM create the tables, and then recreate the tables in the right order, and turn off the automatic DDL stuff in GORM after that. If you use the field and table names that GORM chose, you'll not need to add any mappings.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309946#3099461Answer by John Flinchbaugh for When overriding equals in Java, why does it not work to use a parameter other than Object?John Flinchbaugh2008-11-21T19:47:32Z2008-11-21T19:47:32Z<p>The ArrayList implementation of the contains(Object) method is bound to use Object.equals(Object) method internally, so it'll never know about your overloading of the equals(MyClass) method. Only an overriding method (with matching signature) will be found.</p>
http://stackoverflow.com/questions/303113/is-there-a-groovy-equivalent-to-the-beanshell-source-method/306480#3064804Answer by John Flinchbaugh for Is there a groovy equivalent to the beanshell source() method?John Flinchbaugh2008-11-20T19:06:48Z2008-11-20T19:06:48Z<p>You can assemble all the parts of your scripts into a String, then have a GroovyShell object evaluate your script. I picked this up from Venkat Subramanium's DSL examples.</p>
<pre><code>part1 = new File("part1.groovy").text
part2 = new File("part2.groovy").text
script = """
println "starting execution"
${part1}
${part2}
println "done execution"
"""
new GroovyShell().evaluate(script)
</code></pre>
http://stackoverflow.com/questions/303512/hidden-features-of-groovy/306441#3064410Answer by John Flinchbaugh for Hidden features of Groovy?John Flinchbaugh2008-11-20T18:56:02Z2008-11-20T18:56:02Z<p>Closures can make all the old try-finally games of resource management go away. The file stream is automatically closed at the end of the block:</p>
<pre><code>new File("/etc/profile").withReader { r ->
System.out << r
}
</code></pre>
http://stackoverflow.com/questions/194331/adding-a-method-to-a-domain-class/199786#1997861Answer by John Flinchbaugh for Adding a method to a domain classJohn Flinchbaugh2008-10-14T02:06:39Z2008-10-14T02:06:39Z<p>If you want your method to appear to be more like a property, then make your method a getter method. A method called getFullName(), can be accessed like a property as ${person.fullName}. Note the lack of parentheses.</p>
http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/184834#1848341Answer by John Flinchbaugh for What does it mean for a programming language to be "on rails"?John Flinchbaugh2008-10-08T20:49:50Z2008-10-08T20:49:50Z<p>As said above, Rails and Grails provide conventions for web application development -- naming your pieces a certain way and putting them in the right places get your application working by default with no extra configuration. When you want to deviate from the convention, you can configure your way there.</p>
http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/163883#1638831Answer by John Flinchbaugh for How to check if element in groovy array/hash/collection/list?John Flinchbaugh2008-10-02T18:35:56Z2008-10-02T18:35:56Z<p>If you really want your includes method on an ArrayList, just add it:</p>
<pre><code>ArrayList.metaClass.includes = { i -> i in delegate }
</code></pre>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/163795#1637952Answer by John Flinchbaugh for How do you parse a web page and extract all the href links?John Flinchbaugh2008-10-02T18:18:55Z2008-10-02T18:18:55Z<p>Assuming well-formed XHTML, slurp the xml, collect up all the tags, find the 'a' tags, and print out the href and text.</p>
<pre><code>input = """<html><body>
<a href = "http://www.hjsoft.com/">John</a>
<a href = "http://www.google.com/">Google</a>
<a href = "http://www.stackoverflow.com/">StackOverflow</a>
</body></html>"""
doc = new XmlSlurper().parseText(input)
doc.depthFirst().collect { it }.findAll { it.name() == "a" }.each {
println "${it.text()}, ${it.@href.text()}"
}
</code></pre>
http://stackoverflow.com/questions/115269/my-java-factory-method-smells-how-do-i-fix-it/115347#1153471Answer by John Flinchbaugh for My Java factory method smells. How do I fix it?John Flinchbaugh2008-09-22T15:04:50Z2008-09-22T15:04:50Z<p>Another approach to dynamically finding the class to load, would be to omit the explicit map, and just try to build the class name from the command string. A title case and concatenate algorithm could turn "START" -> "com.mypackage.commands.StartCommand", and just use reflection to try to instantiate it. Fail somehow (InvalidCommand instance or an Exception of your own) if you can't find the class.</p>
<p>Then you add commands just by adding one object and start using it.</p>
http://stackoverflow.com/questions/115269/my-java-factory-method-smells-how-do-i-fix-it/115317#1153170Answer by John Flinchbaugh for My Java factory method smells. How do I fix it?John Flinchbaugh2008-09-22T14:59:03Z2008-09-22T14:59:03Z<p>Having this repetitive object creation code all hidden in the factory is not so bad. If it has to be done somewhere, at least it's all here, so I'd not worry about it too much.</p>
<p>If you <em>really</em> want to do something about it, maybe go for the Map, but configure it from a properties file, and build the map from that props file.</p>
<p>Without going the classpath discovery route (about which I don't know), you'll always be modifying 2 places: writing a class, and then adding a mapping somewhere (factory, map init, or properties file).</p>
http://stackoverflow.com/questions/77193/how-do-you-justify-refactoring-work-to-your-penny-pinching-boss/77241#772415Answer by John Flinchbaugh for How do you justify Refactoring work to your penny-pinching boss?John Flinchbaugh2008-09-16T21:18:33Z2008-09-16T21:18:33Z<p>Just do it and schedule it into your normal process. Estimate refactoring time into starting a new change or into finishing a change (ideal).
I always refactor while I'm initially exploring new code (extracting methods, etc).</p>
http://stackoverflow.com/questions/77172/stored-procedures-db-schema-in-source-control/77212#772120Answer by John Flinchbaugh for Stored procedures/DB schema in source controlJohn Flinchbaugh2008-09-16T21:15:50Z2008-09-16T21:15:50Z<p>For procs, write the procs with script wrappers into plain files, and apply the changes from those files. If it applied correctly, then you can check in that file, and you'll be able to reproduce it from that file as well.</p>
<p>For schema changes, you may need to check in scripts to incrementally make the changes you've made. Write the script, apply it, and then check it in. You can build a process then, to automatically apply each schema script in series.</p>
http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/75602#756021Answer by John Flinchbaugh for What development book made the most impact on you as a developer?John Flinchbaugh2008-09-16T18:43:37Z2008-09-16T18:43:37Z<p>GOF Design Patterns
Fowler's Refactoring</p>
http://stackoverflow.com/questions/1334298/running-a-script-from-groovy/1334625#1334625Comment by John Flinchbaugh on Running a script from GroovyJohn Flinchbaugh2009-08-26T13:35:56Z2009-08-26T13:35:56ZI'm still not sure about changing the working directory.http://stackoverflow.com/questions/205660/best-pattern-for-simulating-continue-in-groovy-closure/205764#205764Comment by John Flinchbaugh on Best pattern for simulating "continue" in Groovy closureJohn Flinchbaugh2008-10-16T12:17:03Z2008-10-16T12:17:03ZUsing exceptions to control program flow is a bad idea. Creating exceptions requires taking a snapshot of the call stack, and that's costly.http://stackoverflow.com/questions/115459/online-tool-for-generating-mathematical-equation-image-files/115475#115475Comment by John Flinchbaugh on Online tool for generating mathematical equation image filesJohn Flinchbaugh2008-09-22T15:24:37Z2008-09-22T15:24:37ZLearn LaTeX, and you can then take your knowledge offline.http://stackoverflow.com/questions/115116/should-unit-test-classes-be-kept-under-version-control-with-the-rest-of-the-code/115120#115120Comment by John Flinchbaugh on Should unit test classes be kept under version control with the rest of the code?John Flinchbaugh2008-09-22T15:22:43Z2008-09-22T15:22:43ZIdeally, you change the tests to demonstrate your change (and fail), then make your change to your code to pass the test. Once the tests are passing again, check it all back into source control. That's test-driven development.