User Bob Herrmann - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T04:41:28Z http://stackoverflow.com/feeds/user/6580 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1887841/grails-startup-is-slow 6 Grails startup is slow Bob Herrmann 2009-12-11T12:43:03Z 2009-12-14T03:07:31Z <p>Help! I'm porting a large ruby app to Grails - but the Grails startup of my application takes more than 2 minutes. </p> <p>I've already set dbCreate to "read" I've ensured my high end dual processor desktop windows box gives Grails needed RAM (1 Gig). I have no plugins installed. I have 170 domain classes that used to be ruby classes. </p> <p>When it starts up it prints out the line "Running Grails App.." and then hangs for a long time before it then prints out the "Server running" line.</p> <p>I just did something where I migrated all my ids to bigints. That seems to have worsened the problem. Now it takes about 10 minutes to startup.</p> <p>I am new to grails would you please give me a few more details on what and where to log the events at startup? As to profiling the vm, its been a few years since I did a lot of Java. What do you recommend as the best profiling tool to use now?</p> <p>What else can I do to speed up Grails startup?</p> http://stackoverflow.com/questions/848971/groovy-static-class 0 groovy static class Bob Herrmann 2009-05-11T16:42:07Z 2009-12-11T18:37:23Z <p>What does the 'static' do in this file, sample.groovy?</p> <pre><code>static class froob { } </code></pre> <p>The groovy code compiles fine with 'static' or without it.</p> http://stackoverflow.com/questions/1785030/android-how-do-i-support-different-phone-version-and-screen-sizes 0 Android how do I support different phone version and screen sizes? Bob Herrmann 2009-11-23T18:23:14Z 2009-11-25T17:13:57Z <p>Some of my application's users are on android 1.5, some on 1.6, and some 2.0.</p> <p>So how do I release my app for all customers? If I release a 1.5 version, then the 1.5 phone can use it - but not the newer phones with smaller screens (aka Tatoo), they require 1.6 or higher? correct?</p> <p>Thanks</p> http://stackoverflow.com/questions/508267/how-to-render-how-long-ago-something-happened-using-groovy-or-grails 1 How to render 'how long ago something happened' using Groovy or Grails? Bob Herrmann 2009-02-03T18:14:55Z 2009-11-05T01:43:08Z <p>I would like a method/closure which works like this</p> <pre><code> println TimeDifference.format( System.currentMilliSeconds()-1000*60*60*24*7*6 ) </code></pre> <p>and prints</p> <pre><code> 1 month, 3 weeks, 2 days, 45 hours and 3 minutes ago. </code></pre> <p>Is there an off the shelf solution for this?</p> http://stackoverflow.com/questions/192432/getting-groovys-grape-going 4 Getting Groovy's Grape Going!!! Bob Herrmann 2008-10-10T17:49:56Z 2009-10-27T06:06:39Z <p>I've tried to use the new <a href="http://groovy.codehaus.org/Grape" rel="nofollow">Groovy Grape</a> capability in Groovy 1.6-beta-2 but I get an error message;</p> <pre><code>unable to resolve class com.jidesoft.swing.JideSplitButton </code></pre> <p>from the Groovy Console (/opt/groovy/groovy-1.6-beta-2/bin/groovyConsole) when running the stock example;</p> <pre><code>import com.jidesoft.swing.JideSplitButton @Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,)') public class TestClassAnnotation { public static String testMethod () { return JideSplitButton.class.name } } </code></pre> <p>I even tried running the grape command line tool to ensure the library is imported. Like this;</p> <pre><code> $ /opt/groovy/groovy-1.6-beta-2/bin/grape install com.jidesoft jide-oss </code></pre> <p>which does install the library just fine. How do I get the code to run/compile correctly from the groovyConsole?</p> http://stackoverflow.com/questions/1577872/grails-finding-available-views-gsps-at-runtime 2 Grails, finding available views (.gsp's) at runtime Bob Herrmann 2009-10-16T12:49:36Z 2009-10-16T14:06:34Z <p>Is there an easy way for a grails application to find the available list of views (*.gsp) available at runtime. </p> <p>Ideally a solution will work for both application servers which unpack the WAR and those that do not unpack the WAR.</p> <p>Thanks!</p> http://stackoverflow.com/questions/767931/do-different-browsers-firefox-safari-ie-opera-have-limits-on-the-form-elements 0 Do different browsers (Firefox/Safari/IE/Opera) have limits on the form elements name attributes? Bob Herrmann 2009-04-20T11:49:26Z 2009-09-13T00:59:58Z <p>Do different browsers (Firefox/Safari/IE/Opera) have different limits on the <strong>length</strong> of the "name" attribute of form elements?</p> <pre> &lt;input name='a012345678901234567890123456789012345678901234567890123456789 ...'> </pre> http://stackoverflow.com/questions/700743/in-ubuntu-how-do-i-figure-out-which-process-is-a-network-pig 2 In Ubuntu, how do I figure out which process is a network pig Bob Herrmann 2009-03-31T12:44:41Z 2009-06-25T17:45:25Z <p>Using top it's easy to identify processes that are hogging memory and cpu, but ocasionally I see my computer's network activity spike, but I'm unable to determine which process is generating the activity. Where is the right place to look for this information?</p> http://stackoverflow.com/questions/1009311/can-i-determine-what-the-default-state-of-a-checkbox-was-at-pageload-or-what-val 2 Can I determine what the default state of a checkbox was at pageload (or what value reset() reset it to.) Bob Herrmann 2009-06-17T20:15:58Z 2009-06-17T22:28:22Z <p>When an html page is loaded, different input elements can be initialed as they are declared in the HTML. If the user changes some of the input values and then executes a reset() on the form, then the form is reset to it's initial loaded state.</p> <p>My question is, can I determine that "initial element state was" using javascript (ideally in a cross browser way?)</p> <p>Ideally like this (where ???? is what I don't know how to do.)</p> <pre><code>&lt;input type='checkbox' id='chkbox' checked /&gt; &lt;script&gt; alert('The initial state was ' ???? ); $('chkbox').checked = true alert('The initial state was ' ???? ); &lt;/script&gt; </code></pre> <p>This script would say the initial state was 'false' twice.</p> http://stackoverflow.com/questions/983009/java-groovy-socket-write-timeout 1 java/groovy socket write timeout Bob Herrmann 2009-06-11T19:05:36Z 2009-06-12T12:05:11Z <p>I have a simple badly behaved server (written in Groovy) </p> <pre><code>ServerSocket ss = new ServerSocket(8889); Socket s = ss.accept() Thread.sleep(1000000) </code></pre> <p>And a client who I want to have timeout (since the server is not consuming it's input)</p> <pre><code>Socket s = new Socket("192.168.0.106", 8889) s.setSoTimeout(100); s.getOutputStream.write( new byte[1000000] ); </code></pre> <p>However, this client blocks forever. How do I get the client to timeout? </p> <p>THANKS!!</p> http://stackoverflow.com/questions/557409/if-a-project-has-100-unit-test-coverage-are-integration-tests-still-needed 5 If a project has 100% unit test coverage, are integration tests still needed? Bob Herrmann 2009-02-17T15:37:40Z 2009-02-17T17:10:15Z <p>If a project has 100% unit test coverage, are integration tests still needed?</p> <p>I have never worked on a project with 100% unit test coverage, but I'm wondering if your project obtains this (or in the 90%), was your experience that you still needed integration tests? (did you need less?)</p> <p>I ask because integration tests seem to suck. They are often slow, fragile (break easily), opaque (when broken someone has to dive through all the layers to find out what is wrong) and are causing our project to slow way down... I'm beginning to think that having only unit tests (and perhaps a small handful of smoke tests) is the way to go.</p> <p>In the long run, it seems like integration tests (in my experience) cost more than they save. </p> <p>Thanks for your consideration.</p> http://stackoverflow.com/questions/491944/uploaded-files-database-vs-filesystem-when-using-grails-and-mysql 1 uploaded files - database vs filesystem, when using Grails and MySQL Bob Herrmann 2009-01-29T15:08:20Z 2009-02-05T13:46:35Z <p>I know this is something of a "classic question", but does the mysql/grails (deployed on Tomcat) put a new spin on considering how to approach storage of user's uploaded files. </p> <p>I like using the database for everything (simpler architecture, scaling is just scaling the database). But using the filesystem means we don't lard up mysql with binary files. Some might also argue that apache (httpd) is faster than Tomcat for serving up binary files, although I've seen numbers that actually show just putting Tomcat on the front of your site can be faster than using an apache (httpd) proxy.</p> <p>How should I choose where to place user's uploaded files? </p> <p>Thanks for your consideration, time and thought.</p> http://stackoverflow.com/questions/376544/grails-mysql-maxpoolsize 3 Grails MySQL MaxPoolSize Bob Herrmann 2008-12-18T00:28:44Z 2009-01-26T12:24:16Z <p>How do I increase the maxPoolSize in Grails when using mysql? It appears to be using a default connection pool only 8 connections. </p> http://stackoverflow.com/questions/210996/what-is-the-best-way-to-initialize-a-bean 3 What is the best way to initialize a bean? Bob Herrmann 2008-10-17T03:21:42Z 2009-01-23T05:32:59Z <p>In spring you can initialize a bean by having the applicationContext.xml invoke a constructor, or you can set properties on the bean. What are the trade offs between the two approaches? Is it better to have a constructor (which enforces the contract of having everything it needs in one method) or is it better to have all properties (which gives you flexibility to only inject selectively for example when unit testing.)</p> <p>What are the trade offs (between writing a bean that uses a constructor to establish it's initial state, or using properties and perhaps an afterProperties() method) ?</p> http://stackoverflow.com/questions/306139/how-do-i-include-jars-in-a-groovy-script/331989#331989 0 Answer by Bob Herrmann for How do I include jars in a groovy script? Bob Herrmann 2008-12-01T19:54:07Z 2008-12-01T19:54:07Z <p>You can also try out Groovy Grape. It lets you use annotations to modify the classpath. Its experimental right now, but pretty cool. See <a href="http://groovy.codehaus.org/Grape" rel="nofollow">http://groovy.codehaus.org/Grape</a></p> http://stackoverflow.com/questions/278692/how-can-i-join-lines-in-a-csv-file-when-one-of-the-fields-has-a-newline/282927#282927 1 Answer by Bob Herrmann for How can I join lines in a CSV file when one of the fields has a newline? Bob Herrmann 2008-11-12T03:27:25Z 2008-11-12T03:27:25Z <p>This might be too simple (or not handle the general case well enough),</p> <pre><code>def input = """foo,bar,n ,a,bc,d one,two,three ,a,bc,d""" def last input.eachLine { if(it.startsWith(',')) { last += it; return; } if(last) println last; last = it } println last </code></pre> <p>emits;</p> <pre><code>foo,bar,n,a,bc,d one,two,three,a,bc,d </code></pre> http://stackoverflow.com/questions/248442/best-free-resources-to-learn-groovy-grails/251138#251138 2 Answer by Bob Herrmann for Best free resources to learn Groovy/Grails Bob Herrmann 2008-10-30T17:58:55Z 2008-10-30T17:58:55Z <p>Also, <a href="http://www.infoq.com/minibooks/grails" rel="nofollow">Getting Started with Grails</a></p> http://stackoverflow.com/questions/212050/in-a-spring-configuration-what-is-the-difference-between-using-name-vs-id 2 In a spring configuration, what is the difference between using name vs id? Bob Herrmann 2008-10-17T13:14:32Z 2008-10-28T06:12:31Z <p>In a spring configuration, what is the difference between using name vs id? I'm aware that XML restricts the "id" attribute to be unique in a document and limits the characters for using in the id. But otherwise when declaring a bean, what is the difference between using the "name" attribute vs the "id" attribute?</p> http://stackoverflow.com/questions/212805/in-java-how-do-i-dynamically-determine-the-type-of-an-array 4 In Java, how do I dynamically determine the type of an array? Bob Herrmann 2008-10-17T16:12:33Z 2008-10-17T16:26:20Z <pre><code>Object o = new Long[0] System.out.println( o.getClass().isArray() ) System.out.println( o.getClass().getName() ) Class ofArray = ??? </code></pre> <p>Running the first 3 lines emits;</p> <pre><code>true [Ljava.lang.Long; </code></pre> <p>How do I get ??? to be type long? I could parse the string and do a Class.forname(), but thats grotty. What's the easy way?</p> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/194439#194439 0 Answer by Bob Herrmann for Getting Groovy's Grape Going!!! Bob Herrmann 2008-10-11T18:50:34Z 2008-10-11T18:50:34Z <p>Ok. Seems like this a short working demo (running from the groovyConsole)</p> <pre><code>groovy.grape.Grape.initGrape() @Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)') public class UsedToExposeAnnotationToComplier {} com.jidesoft.swing.JideSplitButton.class.name </code></pre> <p>When run it produces</p> <p>Result: "com.jidesoft.swing.JideSplitButton"</p> <p>Very cool!!</p> http://stackoverflow.com/questions/192537/where-can-i-find-a-good-desktop-favicon-ico-editor 3 Where can I find a good desktop favicon.ico editor? Bob Herrmann 2008-10-10T18:22:08Z 2008-10-10T19:46:47Z <p>What is a simple easy to use desktop program for creating and editing favicon.ico files? I already have used <a href="http://favicon.cc" rel="nofollow">http://favicon.cc</a> which is a great site, but are there any better desktop tools designed for this? (Ideally ones that run under Ubuntu and aren't as complex as Gimp)</p> http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/182391#182391 1 Answer by Bob Herrmann for How do you advance beyond being an 'advanced' programmer? Bob Herrmann 2008-10-08T12:05:41Z 2008-10-08T12:05:41Z <p>You choose! Learn the Banjo or Accordion</p> http://stackoverflow.com/questions/159148/groovy-executing-shell-commands 3 Groovy executing shell commands Bob Herrmann 2008-10-01T18:54:39Z 2008-10-01T19:21:57Z <p>Groovy adds the execute method to String to make executing shells fairly easy;</p> <pre><code>println "ls".execute().text </code></pre> <p>but if an error happens, then there is no resulting output. Is there an easy way to get both the standard error and standard out? (other than creating a bunch of code to; create two threads to read both inputstreams, then using a parent stream to wait for them to complete then convert the strings back to text?)</p> <p>It would be nice to have something like;</p> <pre><code> def x = shellDo("ls /tmp/NoFile") println "out: ${x.out} err:${x.err}" </code></pre> <p>Thx -bob</p> http://stackoverflow.com/questions/159148/groovy-executing-shell-commands/159270#159270 2 Answer by Bob Herrmann for Groovy executing shell commands Bob Herrmann 2008-10-01T19:20:26Z 2008-10-01T19:20:26Z <p>Ok, solved it myself;</p> <pre><code>def sout = new StringBuffer(), serr = new StringBuffer() def proc = 'ls /badDir'.execute() proc.consumeProcessOutput(sout, serr) proc.waitForOrKill(1000) println "out&gt; $sout err&gt; $serr" </code></pre> <p>displays:</p> <p>out> err> ls: cannot access /badDir: No such file or directory</p> http://stackoverflow.com/questions/65530/in-tomcat-how-can-my-servlet-determine-what-connectors-are-configured 0 In Tomcat how can my servlet determine what connectors are configured? Bob Herrmann 2008-09-15T18:40:57Z 2008-09-22T07:07:09Z <p>The server.xml can have many connectors, typically port only 8080, but for my application a user might configure their servlet.xml to also have other ports open (say 8081-8088). I would like for my servlet to figure out what socket connections ports will be vaild (During the Servlet.init() tomcat has not yet started the connectors.) I could find and parse the server.xml myself (grotty), I could look at the thread names (after tomcat starts up - but how would I know when a good time to do that is? ) But I would prefer a solution that can execute in my servlet.init() and determine what will be the valid port range. Any ideas? A solution can be tightly bound to Tomcat for my application that's ok.</p> http://stackoverflow.com/questions/27846/how-do-you-change-the-default-homepage-in-a-grails-application/62316#62316 1 Answer by Bob Herrmann for How do you change the default homepage in a Grails application? Bob Herrmann 2008-09-15T12:24:42Z 2008-09-15T12:24:42Z <p>Add this in UrlMappings.groovy </p> <pre> "/" { controller = "yourController" action = "yourAction" } </pre> <p>By configuring the URLMappings this way, the home-page of the app will be yourWebApp/yourController/yourAction.</p> <p>(cut/pasted from <a href="http://blog.intelligrape.com/?p=18" rel="nofollow">IntelliGrape Blog</a>)</p> http://stackoverflow.com/questions/1887841/grails-startup-is-slow/1894024#1894024 Comment by Bob Herrmann on Grails startup is slow Bob Herrmann 2009-12-12T20:54:53Z 2009-12-12T20:54:53Z Hi Andrew, I folded your details back into the question. You can delete this answer if you like. http://stackoverflow.com/questions/1303989/sorting-on-multiple-fields-with-criteria-in-grails Comment by Bob Herrmann on Sorting on multiple fields with criteria in Grails Bob Herrmann 2009-10-21T18:44:18Z 2009-10-21T18:44:18Z I think your example could be cut down a bit. class Foo { String name int age } Then ask, how do I use GORM criteria to order first by name, then by age? http://stackoverflow.com/questions/848971/groovy-static-class/849021#849021 Comment by Bob Herrmann on groovy static class Bob Herrmann 2009-05-12T11:41:42Z 2009-05-12T11:41:42Z Bah! stupid comment formatting &lt;pre&gt; static class froob { static void main(String[]f){ println &quot;huh&quot; println new froob().class.name } } &lt;/pre&gt; http://stackoverflow.com/questions/848971/groovy-static-class/849021#849021 Comment by Bob Herrmann on groovy static class Bob Herrmann 2009-05-12T11:41:20Z 2009-05-12T11:41:20Z Humm. This appears to work/execute from the Groovy Console static class froob { static void main(String[]f){ println &quot;huh&quot; println new froob().class.name } } http://stackoverflow.com/questions/767931/do-different-browsers-firefox-safari-ie-opera-have-limits-on-the-form-elements/767955#767955 Comment by Bob Herrmann on Do different browsers (Firefox/Safari/IE/Opera) have limits on the form elements name attributes? Bob Herrmann 2009-04-20T12:08:55Z 2009-04-20T12:08:55Z I see now in my question I forgot to call out that I was after the length restriction. Sheesh. It's easy to write a bad question. http://stackoverflow.com/questions/767931/do-different-browsers-firefox-safari-ie-opera-have-limits-on-the-form-elements/767955#767955 Comment by Bob Herrmann on Do different browsers (Firefox/Safari/IE/Opera) have limits on the form elements name attributes? Bob Herrmann 2009-04-20T12:02:08Z 2009-04-20T12:02:08Z Thanks, thats very helpful. Although I was wonder what the different browser limits are. I bet Firefox/IE/Safari/Opera implement different hard limits. Thanks! http://stackoverflow.com/questions/327350/what-are-some-good-resources-for-learning-grails/327352#327352 Comment by Bob Herrmann on What are some good resources for learning Grails? Bob Herrmann 2008-12-01T13:08:25Z 2008-12-01T13:08:25Z This fantastic book is just about to be updated. You can buy the beta PDF at <a href="http://www.apress.com/book/view/1590599950" rel="nofollow">apress.com/book/view/1590599950</a> I believe the book has doubled in size. The original version was based on 0.3 of grails. The new verision is based on grails 1.1 I recommend getting the newer book. http://stackoverflow.com/questions/216894/get-an-outputstream-into-a-string/216921#216921 Comment by Bob Herrmann on Get an OutputStream into a String Bob Herrmann 2008-10-20T00:53:00Z 2008-10-20T00:53:00Z Save yourself a year of your life and read through all the common's APIs so when you encounter a problem, you can unleash a fully tested and community owned solution. http://stackoverflow.com/questions/183352/groovy-execute-cp-shell-command/183441#183441 Comment by Bob Herrmann on Groovy execute "cp *" shell command Bob Herrmann 2008-10-12T03:04:55Z 2008-10-12T03:04:55Z Hi. see my blurb about getting the error stream as well as the standard out stream in <a href="http://stackoverflow.com/questions/159148/groovy-executing-shell-commands" rel="nofollow" title="groovy executing shell commands">stackoverflow.com/questions/159148/&hellip;</a> and I think you will find out what the problem is. http://stackoverflow.com/questions/65530/in-tomcat-how-can-my-servlet-determine-what-connectors-are-configured/65656#65656 Comment by Bob Herrmann on In Tomcat how can my servlet determine what connectors are configured? Bob Herrmann 2008-10-10T17:52:07Z 2008-10-10T17:52:07Z FYI: I happen to be on Tomcat 5.5.17 http://stackoverflow.com/questions/65530/in-tomcat-how-can-my-servlet-determine-what-connectors-are-configured Comment by Bob Herrmann on In Tomcat how can my servlet determine what connectors are configured? Bob Herrmann 2008-10-10T17:51:11Z 2008-10-10T17:51:11Z This is for Tomcat 5.5 http://stackoverflow.com/questions/65530/in-tomcat-how-can-my-servlet-determine-what-connectors-are-configured/65699#65699 Comment by Bob Herrmann on In Tomcat how can my servlet determine what connectors are configured? Bob Herrmann 2008-09-15T19:03:59Z 2008-09-15T19:03:59Z Well, my application has a configureation phase in which different services are hooked up to different ports. I want to ensure that in the configuration phase, that I can verify that a service is configured to listen on a port that tomcat is accepting connections on. http://stackoverflow.com/questions/65530/in-tomcat-how-can-my-servlet-determine-what-connectors-are-configured/65656#65656 Comment by Bob Herrmann on In Tomcat how can my servlet determine what connectors are configured? Bob Herrmann 2008-09-15T19:02:32Z 2008-09-15T19:02:32Z Humm. Can a servlet access org.apache.catalina.ServerFactory ? I though that would be in the classloader of the server, and in accessible to the Servlet.