User sblundy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:04:19Z http://stackoverflow.com/feeds/user/4893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134742/server-side-datatable-sorting-in-richfaces 0 Server-side DataTable Sorting in RichFaces sblundy 2008-09-25T17:34:26Z 2009-10-19T10:25:11Z <p>I have a data table with a variable number of columns and a data scroller. How can I enable server side sorting? I prefer that it be fired by the user clicking the column header.</p> <pre><code>&lt;rich:datascroller for="instanceList" actionListener="#{pageDataModel.pageChange}"/&gt; &lt;rich:dataTable id="instanceList" rows="10" value="#{pageDataModel}" var="fieldValues" rowKeyVar="rowKey"&gt; &lt;rich:columns value="#{pageDataModel.columnNames}" var="column" index="idx"&gt; &lt;f:facet name="header"&gt; &lt;h:outputText value="#{column}"/&gt; &lt;/f:facet&gt; &lt;h:outputText value="#{classFieldValues[idx]}" /&gt; &lt;/rich:columns&gt; &lt;/rich:dataTable&gt; </code></pre> <p>I already have a method on the bean for executing the sort.</p> <pre><code>public void sort(int column) </code></pre> http://stackoverflow.com/questions/285523/last-iteration-of-for-loop-in-java/285534#285534 0 Answer by sblundy for Last iteration of for loop in java sblundy 2008-11-12T22:03:45Z 2009-10-07T21:22:09Z <p>If you convert it to a classic index loop, yes.</p> <p>Or you could just delete the last comma after it's done. Like so:</p> <pre><code>int[] array = {1, 2, 3...}; StringBuilder builder = new StringBuilder(); for(int i : array) { builder.append(i + ","); } if(builder.charAt((builder.length() - 1) == ',')) builder.deleteCharAt(builder.length() - 1); </code></pre> <p>Me, I just use <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/StringUtils.html#join%28java.util.Collection,%20char%29" rel="nofollow"><code>StringUtils.join()</code></a> from <a href="http://commons.apache.org/lang/" rel="nofollow">commons-lang</a>.</p> http://stackoverflow.com/questions/218990/detecting-virus-scanners 0 Detecting Virus Scanners sblundy 2008-10-20T16:09:58Z 2009-09-06T18:26:03Z <p>We've had problems with a virus scanner murdering the performance of our app by slowing down writes to an <a href="http://en.wikipedia.org/wiki/H2_(DBMS)" rel="nofollow">H2 db</a>. So we'd like to be able to detect the presence of any virus scanner and alert the user of the potential problem. It would be part of a problem detection retue that would alert users to known performance factors specific to their systems.</p> <p>The current suggestion is a write test that displays the warning if a disk write takes an unreasonable amount of time. That does get to the actual problem, but not to the cause. So, is there any reliable and direct way to detect virus protection, one that doesn't rely on indirect effects? We might end up doing both, but it would be nice to be curtain in our 'suggestions'.</p> http://stackoverflow.com/questions/76591/persistence-xml-not-found-during-maven-testing 1 persistence.xml not found during maven testing sblundy 2008-09-16T20:25:55Z 2009-09-04T16:30:04Z <p>I'm trying to load test data into a test DB during a maven build for integration testing. persistence.xml is being copied to <code>target/test-classes/META-INF/</code> correctly, but I get this exception when the test is run.</p> <blockquote> <p>javax.persistence.PersistenceException: No Persistence provider for EntityManager named aimDatabase</p> </blockquote> <p>It looks like it's not finding or loading persistence.xml.</p> http://stackoverflow.com/questions/354081/available-maven-profiles 2 Available Maven Profiles sblundy 2008-12-09T20:18:34Z 2009-07-30T20:43:44Z <p>Is there an easy way to figure out, preferably from the command line, what profiles are available for a particular project. I've got a big, multi-module project I'm trying to figure out.</p> http://stackoverflow.com/questions/359921/test-class-extending-test-class-in-dependency-module 3 Test class extending test class in dependency module sblundy 2008-12-11T16:16:59Z 2009-07-30T20:42:49Z <p>I've got a test class in a module that extends another test class in one of its dependency modules. How can I import the dependency's test code into the test scope of the dependent module?</p> <p>To illiterate, I've got two modules, "module-one" being a dependency of "module-two". <code>SubTestCase</code> is a subclass of <code>TestCase</code>.</p> <pre> module-one \src\test\java\com\example\TestCase.java module-two \src\test\java\com\example\SubTestCase.java </pre> <p>But the build is failing because the test code of "module-one" is not being imported into "module-two", just the main code. </p> http://stackoverflow.com/questions/462151/which-scopes-are-present-during-maven-site-lifecycle 0 Which scopes are present during maven site lifecycle sblundy 2009-01-20T17:01:33Z 2009-07-30T20:33:32Z <p>Which maven scopes are available during report generation for a maven site? Are any available.</p> <p>I'm trying to share a FindBugs filter file between several modules without having it end up in any of the application jars. I was thinking of putting in a commons project, which will package it in a separate jar with a classifier of "build-tools" with any other such files we might have. Any projects that need it will import the project with the classifier.</p> http://stackoverflow.com/questions/465777/nested-maven-properties-evaluated-in-refering-pom-rather-than-defining-pom 2 Nested Maven properties evaluated in refering POM rather than defining POM sblundy 2009-01-21T15:36:51Z 2009-07-30T20:30:05Z <p>I'm defining a report configuration in my parent pom which will be run in each child and grandchild project. </p> <p>Like so:</p> <pre><code>&lt;reporting&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;findbugs-maven-plugin&lt;/artifactId&gt; &lt;version&gt;1.2&lt;/version&gt; &lt;configuration&gt; &lt;xmlOutput&gt;true&lt;/xmlOutput&gt; &lt;threshold&gt;Low&lt;/threshold&gt; &lt;effort&gt;Min&lt;/effort&gt; &lt;includeFilterFile&gt;${basedir}/findbugsFilter.xml&lt;/includeFilterFile&gt; &lt;/configuration&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/reporting&gt; </code></pre> <p>The trouble is that each child inserts its <code>basedir</code> rather than the defining POM. I suppose I'm looking for the equivalent to ANT's <code>&lt;property name="name" location="${basedir}"/&gt;</code>. Any ideas?</p> http://stackoverflow.com/questions/521732/is-there-a-system-or-framework-for-non-programmer-form-creation 1 Is there a system or framework for non-programmer form creation? sblundy 2009-02-06T19:11:53Z 2009-07-30T18:13:11Z <p>Anyone know of a system or framework for a non-programmer form creation? Not a full implementation, but something that handles the designer aspect and something that handles the displaying for being filled in. All the logic we'll be doing. Maybe just a pair of widgets.</p> <p>We've got a client-server application into which normal users enter and modify data in a thick client and we want to allow the customers to update and create forms with another thick client application, rather than calling us every time they need a letter changed. We want something to do the display bits while we implement the various hooks and functions the system uses.</p> <p>We're a java shop, but we expect that we're open to writing these clients in another language if it'll be easier. </p> http://stackoverflow.com/questions/82949/before-and-after-suite-execution-hook-in-junit-4-x 4 Before and After Suite execution hook in jUnit 4.x sblundy 2008-09-17T13:07:33Z 2009-04-01T18:13:40Z <p>I'm trying to preform setup and teardown for a set of integration tests, using jUnit 4.4 to execute the tests. The teardown needs to be run reliably. I'm having other problems with TestNG, so I'm looking to port back to jUnit. What hooks are available for execution before any tests are run and after all tests have completed?</p> <p>Note: we're using maven 2 for our build. I've tried using maven's <code>pre-</code> &amp; <code>post-integration-test</code> phases, but, if a test fails, maven stops and doesn't run <code>post-integration-test</code>, which is no help.</p> http://stackoverflow.com/questions/122238/handling-a-colon-in-an-element-id-in-a-css-selector 8 Handling a colon in an element ID in a CSS selector sblundy 2008-09-23T16:47:20Z 2009-03-17T23:52:11Z <p>JSF is setting the ID of an input field to <code>search_form:expression</code>. I need to specify some styling on that element, but that colon looks like the beginning of a pseudo-element to the browser so it gets marked invalid and ignored. Is there anyway to escape the colon or something?</p> <pre><code>input#search_form:expression { ///... } </code></pre> http://stackoverflow.com/questions/644106/capture-jsp-output-save-to-file/644218#644218 1 Answer by sblundy for Capture JSP output, save to file sblundy 2009-03-13T19:20:36Z 2009-03-13T19:20:36Z <p>You could have a servlet that calls to the JSP by opening a URLConnection and then reading in the output into a temp file or a buffer. It would then zip it and write the zip out. </p> http://stackoverflow.com/questions/634943/maven-in-multimodule-web-project-how-to-put-sibling-modules-output-to-web-inf-cl/634976#634976 1 Answer by sblundy for Maven in multimodule web project: how to put sibling modules output to WEB-INF/classes and not into WEB-INF/lib as JARs? sblundy 2009-03-11T15:09:37Z 2009-03-12T14:49:09Z <p>You could use an <a href="http://maven.apache.org/plugins/maven-war-plugin/overlays.html" rel="nofollow">overlay</a>, although that requires that the sibling be of type war rather than jar. There's also using the dependency plugin to unpack the jar, but it will only unpack the version in your local repository, not the one you just packaged.</p> <p>As for your 'more general' question, there's the <a href="http://maven.apache.org/plugins/maven-jar-plugin/usage.html" rel="nofollow">excludes</a> tag for the jar plugin.</p> http://stackoverflow.com/questions/635014/any-disadvantage-to-using-arbitrary-objects-as-map-keys-in-java/635033#635033 0 Answer by sblundy for Any disadvantage to using arbitrary objects as Map keys in Java? sblundy 2009-03-11T15:25:56Z 2009-03-11T15:25:56Z <p>The failure points are the hashcode and equals functions. If they don't produce consistent and proper return values, the Map will behave strangely. <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java</a> has a whole section on them and is highly, highly recommended.</p> http://stackoverflow.com/questions/631484/decompress-a-gzip-archive-in-java/631498#631498 -1 Answer by sblundy for Decompress a Gzip archive in Java sblundy 2009-03-10T17:45:53Z 2009-03-10T17:45:53Z <p>For that kind of scale, you might want to go native, assuming your platform requirements are limited. You can use JNI to call a library or invoke a native command using <code>ProcessBuilder</code>. </p> http://stackoverflow.com/questions/621115/is-it-possible-to-detect-that-your-javascript-code-is-executing-because-of-an-eve/621122#621122 0 Answer by sblundy for Is it possible to detect that your javascript code is executing because of an event? sblundy 2009-03-07T01:40:18Z 2009-03-07T01:40:18Z <p>You could have it signal by modifying a global variable. For debugging purposes, there's an alert.</p> http://stackoverflow.com/questions/617591/is-future-get-a-replacement-for-thread-join/617596#617596 0 Answer by sblundy for Is Future.get() a replacement for Thread.join() ? sblundy 2009-03-06T03:19:01Z 2009-03-06T04:01:28Z <p>Sort'a. <code>Future.get()</code> is for having a thread go off and calculate something and then return it to the calling thread in a safe fashion. It'd work if the <code>get</code> never returned. But, I'd stick with the <code>join</code> call as it's simpler and no Executer overhead (not that there would be all that much).</p> <p><strong>Edit</strong></p> <p>It looks like <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ExecutorService.html#submit%28java.lang.Runnable%29" rel="nofollow"><code>ExecutorService.submit(Runnable)</code></a> is intended to do exectly what you're attempting. It just returns <code>null</code> when the <code>Runnable</code> completes. Interesting.</p> http://stackoverflow.com/questions/617594/one-schema-for-all-or-separation-of-schema-for-each-customer/617608#617608 0 Answer by sblundy for One schema for all or separation of Schema for each customer? sblundy 2009-03-06T03:26:23Z 2009-03-06T03:26:23Z <p>With your requirements, separate customer DB schema's sound like a good idea. It'll be a bit of a headache, but not as much as a lawsuit.</p> http://stackoverflow.com/questions/615334/a-tool-like-resharper-but-for-java/615349#615349 6 Answer by sblundy for A tool like ReSharper, but for Java? sblundy 2009-03-05T15:45:27Z 2009-03-05T15:45:27Z <p>Resharper was developed by JetBrains and is a port of <a href="http://www.jetbrains.com/idea/index.html" rel="nofollow">IntelliJ</a> functionality to C#</p> http://stackoverflow.com/questions/611296/rewrite-c-code-in-java-or-use-jni/611316#611316 8 Answer by sblundy for Rewrite C code in Java or use JNI? sblundy 2009-03-04T16:22:52Z 2009-03-04T16:22:52Z <p>I think the answer lies in the amount of coupling there would be between the calling java code and the invoked C/C++ code and in the level of effort the rewrite would entail. If your C code takes a few integers, does some hairy calculation, and returns another int. Use JNI. If there's a lot of complex back and forth, but the algorithms are reasonably simple, rewrite 'em. The fault line is the JNI connection. If that's going to be complex, you may end up writing more JNI interface code than you would algorithm code for a rewrite.</p> http://stackoverflow.com/questions/608222/is-the-name-attribute-considered-outdated-for-a-anchor-tags/608239#608239 2 Answer by sblundy for Is the 'name' attribute considered outdated for <a> anchor tags? sblundy 2009-03-03T21:18:56Z 2009-03-03T21:18:56Z <p>I believe the modern approach is to use the <code>id</code> attribute, which would be evaluated as an anchor. For example, if you changed</p> <pre><code>&lt;h2&gt;&lt;a name="one"&gt;Section One&lt;/a&gt;&lt;/h2&gt; </code></pre> <p>to</p> <pre><code>&lt;h2&gt;&lt;a id="one"&gt;Section One&lt;/a&gt;&lt;/h2&gt; </code></pre> <p>You would still address it as <code>page.html#one</code>.</p> http://stackoverflow.com/questions/607863/do-you-find-java-util-logging-sufficient/607908#607908 6 Answer by sblundy for Do you find java.util.logging sufficient? sblundy 2009-03-03T19:59:28Z 2009-03-03T20:08:57Z <p><a href="http://www.slf4j.org/" rel="nofollow">SLF4J</a> is the new kid. I've done a little work with it and it's pretty nice. It's main advantage is <a href="http://www.slf4j.org/faq.html#logging%5Fperformance" rel="nofollow">parametrized logging</a>, which means you do this:</p> <pre><code>logger.debug("The new entry is {}. It replaces {}.", entry, oldEntry); </code></pre> <p>Rather than this:</p> <pre><code>logger.debug("The new entry is " + entry + ". It replaces " + oldEntry + "."); </code></pre> <p>And all that string manipulation is done only if the statement is actually logged. Looks cleaner too.</p> <p>It should be noted that SLF4J is a wrapper like commons-logging, though it claims to be less prone to commons-logging's classloader problems.</p> http://stackoverflow.com/questions/604993/is-it-possible-to-detect-east-asian-language-support/605035#605035 2 Answer by sblundy for Is it possible to detect East Asian language support? sblundy 2009-03-03T03:45:14Z 2009-03-03T03:51:52Z <p>Your server might be able to check the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.2" rel="nofollow"><code>Accept-Charset</code></a> header, if it's one that doesn't include japanese characters, redirect to a warning page. Unfortunately, as <a href="http://stackoverflow.com/questions/220149/how-do-i-access-the-http-request-header-fields-via-javascript">this thread</a> indicates, the headers are not available to javascript.</p> http://stackoverflow.com/questions/604956/how-do-you-force-all-li-elements-in-a-ul-to-be-the-same-size-as-the-largest-item/604979#604979 0 Answer by sblundy for How do you force all li elements in a ul to be the same size as the largest item without setting a fixed size? sblundy 2009-03-03T03:18:03Z 2009-03-03T03:18:03Z <p>The only way I know of to have several cells in a column to have the same width involves tables. IE expressions might work too, but I wouldn't recommend it.</p> http://stackoverflow.com/questions/604191/mocking-an-entity-framework-model/604294#604294 2 Answer by sblundy for Mocking an Entity Framework model? sblundy 2009-03-02T22:24:08Z 2009-03-02T22:24:08Z <p>You could wrap your LINQ code in <a href="http://en.wikipedia.org/wiki/Data%5FAccess%5FObject" rel="nofollow">Data Access Objects</a>. The DAOs would have separate interface and implementation code. Your test code would mock the DAOs.</p> <p>If you don't want to do that, you'll need a test DB.</p> http://stackoverflow.com/questions/603247/should-libraries-jar-go-into-the-repository/603307#603307 4 Answer by sblundy for Should libraries (jar) go into the repository? sblundy 2009-03-02T17:50:57Z 2009-03-02T17:50:57Z <p>If you're using ANT and you want maven style dependency management without maven, take a look at <a href="http://ant.apache.org/ivy/" rel="nofollow">Ivy</a>. It can download from maven repositories and can even read maven pom files.</p> http://stackoverflow.com/questions/584268/is-it-best-to-put-the-page-name-before-the-site-name-or-vice-versa/584291#584291 0 Answer by sblundy for Is it best to put the page name before the site name or vice-versa? sblundy 2009-02-25T00:31:52Z 2009-02-25T00:31:52Z <p>You could internationalize it, have the order be local dependent. Also take into account the organization and information architecture of the site and what you're showing in general. </p> <p>Short answer: depends</p> http://stackoverflow.com/questions/538209/file-copying-optimization-through-multiple-threads/538222#538222 2 Answer by sblundy for File Copying optimization through multiple threads sblundy 2009-02-11T18:50:01Z 2009-02-11T18:50:01Z <p>I would think not. There's so little for the CPU to do.</p> http://stackoverflow.com/questions/537921/efficiently-iterate-through-all-matching-keys-in-a-hashmap/538057#538057 0 Answer by sblundy for Efficiently iterate through all MATCHING keys in a hashmap? sblundy 2009-02-11T18:12:05Z 2009-02-11T18:12:05Z <p>You may want to consider some sort of SQL DB, maybe an in-memory one like <a href="http://db.apache.org/derby/" rel="nofollow">Derby</a> or <a href="http://www.h2database.com/" rel="nofollow">H2</a>. Much depends on how important this is and how important that it be fast. Then you could do this in SQL and let the engine do all the optimization work.</p> http://stackoverflow.com/questions/534502/problems-uploading-big-wars-to-glassfish 0 Problems uploading big wars to glassfish sblundy 2009-02-10T22:27:58Z 2009-02-11T15:01:05Z <p>So our war file recently ballooned from about 55MB to over 100MB. At which point, deploy by upload in admin stopped working. Deploy from the command line and deploy from the local filesystem still work. Experimenting, we've determined that the failure point is somewhere between 95 - 100 MB, as in at 95MB war deploys successfully while a 100 MB doesn't. </p> <p>The failure is uninformative. </p> <ol> <li>Go to the admin app</li> <li>Click on "Web Applications" in the tree</li> <li>Click on "Deploy..."</li> <li>Select "Packaged file to be uploaded to the server" if it isn't already</li> <li>Click "Browse..." and select the war file</li> <li>Click "Ok"</li> </ol> <p>At which point is churns for a couple of seconds and then returns to the deploy screen as if nothing happened. The logs have nothing out of the ordinary in them either. This happens whether the server is on our local machines or not. </p> <p>All of our QA procedures use this deployment method, so switching to the alternatives would be a big pain. And the clients might raise a stink as well.</p> http://stackoverflow.com/questions/632100/apply-css-style-to-child-elements/632105#632105 Comment by sblundy on Apply CSS Style to child elements sblundy 2009-03-10T20:31:51Z 2009-03-10T20:31:51Z @rm Nope. There's no nesting of rules or 'with' type grouping http://stackoverflow.com/questions/631484/decompress-a-gzip-archive-in-java/631498#631498 Comment by sblundy on Decompress a Gzip archive in Java sblundy 2009-03-10T18:47:18Z 2009-03-10T18:47:18Z Interesting. That implies that the unzip step isn't the problem or can't be improved. http://stackoverflow.com/questions/631484/decompress-a-gzip-archive-in-java Comment by sblundy on Decompress a Gzip archive in Java sblundy 2009-03-10T17:47:00Z 2009-03-10T17:47:00Z Are you decompressing the files to be processed by the java app or are they being written out to disk? http://stackoverflow.com/questions/622967/help-with-an-exception Comment by sblundy on Help with an Exception sblundy 2009-03-08T03:30:20Z 2009-03-08T03:30:20Z Could you tell us about your environment and the context of the exception http://stackoverflow.com/questions/619241/does-a-blog-sub-domain-help-the-pagerank-of-your-main-site/619255#619255 Comment by sblundy on Does a ".blog." sub-domain help the pagerank of your main site? sblundy 2009-03-06T15:35:47Z 2009-03-06T15:35:47Z I agree. Sounds like a old search engineer's tale to me. http://stackoverflow.com/questions/617585/java-lib-to-compress-html-file/617601#617601 Comment by sblundy on Java lib to compress html file? sblundy 2009-03-06T04:03:30Z 2009-03-06T04:03:30Z @Evan good point. http://stackoverflow.com/questions/617585/java-lib-to-compress-html-file/617601#617601 Comment by sblundy on Java lib to compress html file? sblundy 2009-03-06T03:39:05Z 2009-03-06T03:39:05Z @Suroot Browsers convert multiple spaces to a single space. For example, your two &quot;Hello Worlds&quot; look the same. If you want multiple spaces, you need to use @nbsp;. http://stackoverflow.com/questions/617585/java-lib-to-compress-html-file/617601#617601 Comment by sblundy on Java lib to compress html file? sblundy 2009-03-06T03:29:09Z 2009-03-06T03:29:09Z @Suroot no, it's fine. It replaces multiple spaces with just one. http://stackoverflow.com/questions/608357/html-strict-css-how-do-i-close-the-gap/608364#608364 Comment by sblundy on HTML Strict & CSS: How do I close the gap? sblundy 2009-03-03T21:50:23Z 2009-03-03T21:50:23Z That shouldn't be the solution, but, sadly, it is. http://stackoverflow.com/questions/607879/summing-values-in-one-line-comma-delimited-file/607961#607961 Comment by sblundy on Summing values in one-line comma delimited file. sblundy 2009-03-03T20:35:20Z 2009-03-03T20:35:20Z One line, impressive. http://stackoverflow.com/questions/607863/do-you-find-java-util-logging-sufficient/607908#607908 Comment by sblundy on Do you find java.util.logging sufficient? sblundy 2009-03-03T20:06:41Z 2009-03-03T20:06:41Z Yeah. That's pretty much what the authors of SLF4J did. It's nice to have someone else do the work though. http://stackoverflow.com/questions/538209/file-copying-optimization-through-multiple-threads/538222#538222 Comment by sblundy on File Copying optimization through multiple threads sblundy 2009-02-11T18:54:52Z 2009-02-11T18:54:52Z But the CPU doesn't do all that much of the work for those things. The Disk IO does. http://stackoverflow.com/questions/538082/firefoxs-renders-thin-grey-lines-at-content-box-edges-of-a-png-at-certain-widths Comment by sblundy on firefoxs renders thin grey lines at content box edges of a png at certain widths - why? sblundy 2009-02-11T18:32:46Z 2009-02-11T18:32:46Z @Andy Mikula If you're going to answer the guy's question why don't you post an answer http://stackoverflow.com/questions/538082/firefoxs-renders-thin-grey-lines-at-content-box-edges-of-a-png-at-certain-widths Comment by sblundy on firefoxs renders thin grey lines at content box edges of a png at certain widths - why? sblundy 2009-02-11T18:23:37Z 2009-02-11T18:23:37Z None of you image links work. I end up at a page that says &quot;You can't do that from here&quot;. Firewall or something? http://stackoverflow.com/questions/521732/is-there-a-system-or-framework-for-non-programmer-form-creation Comment by sblundy on Is there a system or framework for non-programmer form creation? sblundy 2009-02-06T19:21:35Z 2009-02-06T19:21:35Z Sorry, I just accidentally clobbered your edit