User Paul Croarkin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:18:34Z http://stackoverflow.com/feeds/user/18995 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1827008/numbering-messages-in-enterprise-architect-communication-diagrams 0 Numbering Messages in Enterprise Architect Communication Diagrams Paul Croarkin 2009-12-01T15:41:43Z 2009-12-01T15:51:21Z <p>I'm using Enterprise Architect (sparxsystems) to create a UML 2.0 Communication Diagram. I want the numbering of messages to be similar to this example: <a href="http://www.sparxsystems.com.au/uml%5Ftool%5Fguide/uml%5Fdictionary/communicationdiagram.html" rel="nofollow">http://www.sparxsystems.com.au/uml%5Ftool%5Fguide/uml%5Fdictionary/communicationdiagram.html</a>. </p> <p>How do I get messages to start with 2, 3, etc? Whenever I create a new message it creates it as 1.x. I see how to re-order messages, but not how to start a new sequence.</p> <p>The example mentions that "a new number segment begins for a new layer of processing", but does not mention how to define a new layer of processing. </p> http://stackoverflow.com/questions/1827008/numbering-messages-in-enterprise-architect-communication-diagrams/1827067#1827067 0 Answer by Paul Croarkin for Numbering Messages in Enterprise Architect Communication Diagrams Paul Croarkin 2009-12-01T15:51:21Z 2009-12-01T15:51:21Z <p>Figured it out.</p> <p>Right-click on the message. Select Collaboration Properties.</p> <p>Check the box next to Start New Group.</p> <p>Click OK.</p> http://stackoverflow.com/questions/288861/eclipse-optimize-imports-to-include-static-imports 9 Eclipse Optimize Imports to Include Static Imports Paul Croarkin 2008-11-14T00:19:55Z 2009-12-01T02:14:43Z <p>Is there anyway to get Eclipse to automatically look for static imports? For example, now that I've finally upgraded to Junit 4, I'd like to be able to write:</p> <pre><code>assertEquals(expectedValue, actualValue); </code></pre> <p>hit ctrl-SHIFT-O and have Eclipse add:</p> <pre><code>import static org.junit.Assert.assertEquals; </code></pre> <p>Maybe I'm asking too much.</p> http://stackoverflow.com/questions/215745/strategies-to-avoid-hibernate-lazyinitializationexceptions 5 Strategies to avoid Hibernate LazyInitializationExceptions Paul Croarkin 2008-10-18T23:52:30Z 2009-11-20T16:23:00Z <p>Are there any other ways to avoid LazyInitializationExceptions in a Hibernate web application besides using the OpenSessionInView pattern? Are there any downsides to using OpenSessionInView?</p> http://stackoverflow.com/questions/350600/eclipse-custom-variable-for-java-code-templates 1 Eclipse Custom Variable for Java Code Templates Paul Croarkin 2008-12-08T19:38:08Z 2009-10-27T12:41:37Z <p>How do you add a new variable to be inserted into a Java code template. How do I add a variable to the list in Window->Preferences->Java->Code Style->Code Templates->Code->New Java Files->Edit->Insert Variable... ?</p> <p>Currently my new files get created with:</p> <pre><code>${filecomment} ${package_declaration} ${typecomment} ${type_declaration} </code></pre> <p>I'd like them to get created with something like:</p> <pre><code>${begin_filecomment} ${package_declaration} ${typecomment} ${type_declaration} ${end_filecomment} </code></pre> <p>where begin_filecomment and end_filecomment appear in the Insert Variable list.</p> http://stackoverflow.com/questions/1566801/design-pattern-rich-code-base/1567818#1567818 1 Answer by Paul Croarkin for Design Pattern rich code base ? Paul Croarkin 2009-10-14T17:35:07Z 2009-10-14T17:35:07Z <p><a href="http://userpages.umbc.edu/~tarr/dp/fall00/cs491.html" rel="nofollow">http://userpages.umbc.edu/~tarr/dp/fall00/cs491.html</a></p> http://stackoverflow.com/questions/1567598/text-classification-in-java/1567619#1567619 0 Answer by Paul Croarkin for Text Classification in Java Paul Croarkin 2009-10-14T16:56:17Z 2009-10-14T16:56:17Z <p>Use regex expressions. See: <a href="http://java.sun.com/docs/books/tutorial/essential/regex/" rel="nofollow">http://java.sun.com/docs/books/tutorial/essential/regex/</a></p> http://stackoverflow.com/questions/243298/how-to-force-thread-dump-in-eclipse 7 How to Force Thread Dump in Eclipse? Paul Croarkin 2008-10-28T13:31:01Z 2009-10-13T13:51:20Z <p>I'm launching a Weblogic application inside Eclipse via the BEA Weblogic Server v9.2 runtime environment. If this were running straight from the command-line, I'd do a ctrl-BREAK to force a thread dump. Is there a way to do it in Eclipse?</p> http://stackoverflow.com/questions/120889/unrooted-tests 2 Unrooted Tests Paul Croarkin 2008-09-23T13:12:46Z 2009-10-09T19:51:49Z <p>When running all my tests in Eclipse (Eclipse 3.4 'Ganymede'), one test is listed under "Unrooted Tests". I'm using Junit 3.8 and this particular test extends TestCase. I do not see any difference between this test and the other tests. I don't remember seeing this occur in Eclipse 3.3 (Europa).</p> <p>Clarification:</p> <p>We haven't moved to JUnit 4.0 yet, so we are not using annotations. I also googled and it seemed like most people were having issues with JUnit 4, but I did not see any solutions. At this point the test passes both locally and in CruiseControl so I'm not overly concerned, but curious.</p> <p>When I first saw this, though, it was on a failing test that only failed when run with other tests. This led me down the rabbit hole looking for a solution to the "Unrooted" issue that I never found. Eventually I found the culprit in another test that was not properly tearing down.</p> <p>I agree, it does seem like an Eclipse issue.</p> http://stackoverflow.com/questions/205749/java-xml-binding 6 Java XML Binding Paul Croarkin 2008-10-15T17:57:13Z 2009-09-11T03:52:37Z <p>What are you using for binding XML to Java? JAXB, Castor, and XMLBeans are some of the available choices. The comparisons that I've seen are all three or four years old. I'm open to other suggestions. Marshalling / unmarshalling performance and ease of use are of particular interest.</p> <p>Clarification: I'd like to see not just what framework you use, but your reasoning for using one over the others.</p> http://stackoverflow.com/questions/375656/how-to-debug-spring-nosuchbeandefinitionexception 1 How to Debug Spring NoSuchBeanDefinitionException Paul Croarkin 2008-12-17T19:04:58Z 2009-08-03T15:51:08Z <p>We have a (non-web app) Spring application that throws a NoSuchBeanDefinitionException when running tests on our CruiseControl continuous integration linux box. The test runs fine on Windows in Eclipse.</p> <p>The exception is thrown on the getBean() method:</p> <pre><code>ApplicationContext context = new ClassPathXmlApplicationContext(CONTEXT_FILE); MyBean bean = (MyBean)context.getBean("myBean"); </code></pre> <p>The context file is rather large and complicated. The context file is in the classpath and Spring is finding it. I'd prefer it if Spring would throw an exception when trying to load the context file and build the dependencies so that we could have an idea as to where to start. Is there a way to force Spring to throw an exception at the time of creating the context?</p> http://stackoverflow.com/questions/583078/piecemeal-conversion-from-struts-to-tapestry-5 2 Piecemeal Conversion from Struts to Tapestry 5 Paul Croarkin 2009-02-24T18:55:27Z 2009-07-22T09:57:41Z <p>I have a Struts (1.3.8) application that I'd like to convert to Tapestry 5. There will probably not be time to do the whole conversion in one fell swoop. I'd like to deliver new functionality in Tapestry and convert existing Struts / JSPs as time permits. Has anyone attempted something like this? Can Struts and Tapestry co-exist?</p> http://stackoverflow.com/questions/825261/documenting-web-application-flow-iteraction 1 Documenting Web Application Flow / Iteraction Paul Croarkin 2009-05-05T14:55:50Z 2009-05-05T14:55:50Z <p>What artifacts / diagrams do use to document the flow of a web application taking into account links between static pages and how dynamic view components (html forms, JSP, Ajax, etc) interact with server-side components (Servlets, Struts actions, etc)? Do use UML diagrams?</p> http://stackoverflow.com/questions/442924/dry-between-production-and-test-code-constants 2 DRY between Production and Test Code Constants Paul Croarkin 2009-01-14T13:27:43Z 2009-01-14T14:42:48Z <p>I normally try to avoid duplication and adhere to the DRY principle. However, I'm wondering about a case like this:</p> <pre><code>public class Feature { final static String FEATURE_LABEL = "blah"; public void doSomething() { ... } ... } public class FeatureTest { ... @Test public void doSomethingShouldMakeSomethingHappen() { assertEquals(Feature.FEATURE_LABEL, feature.getSomethingHappens().getLabel()); } </code></pre> <p>If the requirement is that the the label be "blah" and someone changes FEATURE_LABEL to "bleh", the test will pass even though it no longer meets the requirement. Is this a valid place to violate DRY?</p> http://stackoverflow.com/questions/375656/how-to-debug-spring-nosuchbeandefinitionexception/442987#442987 0 Answer by Paul Croarkin for How to Debug Spring NoSuchBeanDefinitionException Paul Croarkin 2009-01-14T13:43:49Z 2009-01-14T13:43:49Z <p>Solved. The instantiation of "myBean" in CONTEXT_FILE occurred after another bean that depended on it. This really should not be an issue, but I suspect that the parser on the Linux box must be stricter. Anyway, changing the order of definitions made it work on both Windows and Linux.</p> http://stackoverflow.com/questions/285081/log4j-logging-to-a-shared-log-file 2 Log4j Logging to a Shared Log File Paul Croarkin 2008-11-12T19:39:07Z 2008-12-09T18:15:43Z <p>Is there a way to write log4j logging events to a log file that is also being written to by other applications. The other applications could be non-java applications. What are the drawbacks? Locking issues? Formatting?</p> http://stackoverflow.com/questions/352899/exception-handling/352937#352937 2 Answer by Paul Croarkin for Exception Handling Paul Croarkin 2008-12-09T14:39:49Z 2008-12-09T14:39:49Z <p>I'm not sure what you mean by 'structured exception handling'. </p> <p>The worst thing that can be done in exception handling is to 'swallow' the exception or handle it silently.</p> <p>Do NOT do this:</p> <pre><code>try { ... } catch (Exception e) { //TODO: handle this later } </code></pre> <p>This is very often done out of laziness to get code to compile. If you do not know how to handle the exception at a particular level, have the method throw the exception and at least have a catch all handler at the top. Provide feedback somehow (via the GUI, a page / email to a support person, log file) so that the issue can eventually get fixed. Silently catching an exception almost always leads to a bigger issue happening later on and it being difficult to trace.</p> http://stackoverflow.com/questions/343902/mapping-oracles-number-type-with-hibernate/343922#343922 0 Answer by Paul Croarkin for Mapping ORACLE's NUMBER Type with Hibernate Paul Croarkin 2008-12-05T14:03:17Z 2008-12-05T14:03:17Z <pre><code>@Column(nullable=false) private Boolean kzCode; </code></pre> <p>or if you really want it to be a number, change the Oracle type to NUMBER(36, 0) and use long or Long in your Java.</p> http://stackoverflow.com/questions/310448/best-way-to-configure-a-java-enterprise-application/310465#310465 0 Answer by Paul Croarkin for Best way to configure a Java enterprise application Paul Croarkin 2008-11-21T22:46:37Z 2008-11-21T22:55:51Z <p>How database connection pool information is stored / configured depends on the app server vendor. Put other variable stuff in property files on the classpath.</p> http://stackoverflow.com/questions/306371/bootable-linux-cd-that-can-be-modified/306378#306378 0 Answer by Paul Croarkin for bootable Linux cd that can be modified Paul Croarkin 2008-11-20T18:36:13Z 2008-11-20T18:36:13Z <p>See <a href="http://www.toms.net/rb/" rel="nofollow">Tom's Rtbt</a>. "The most GNU/Linux on 1 floppy disk."</p> http://stackoverflow.com/questions/300715/replacement-for-jwebunit-httpunit 1 Replacement for JWebUnit / HttpUnit Paul Croarkin 2008-11-19T00:57:12Z 2008-11-19T10:07:34Z <p>We've used both JWebUnit and HttpUnit in the past to do functional tests of web applications. Both of them seem to have issues in handling javascript. We are not particularly interested in testing the javascript at this point, but JWebUnit and HttpUnit tests have broken since we added some small Ajax components (Dojo Date / Time pickers for instance) to our pages.</p> <p>Selenium and Watir do not fit because they essentially drive browsers and we are running these tests from CruiseControl on a box where we are not allowed to install a browser.</p> http://stackoverflow.com/questions/296741/long-transaction-time-solution-for-jee/296800#296800 0 Answer by Paul Croarkin for Long Transaction Time Solution for JEE? Paul Croarkin 2008-11-17T20:31:39Z 2008-11-17T20:31:39Z <p>We use MDBs where the queue is persisted in a database which has the benefit of messages not being lost if the system goes down.</p> <p>You may also want to establish an asynchronous contract between the participating parties. What I mean by this is that a client will send you a message and rather than you doing a lot of heavy weight processing and returning a response, you simply send an acknowledgement response and later send an asynchronous message to them with the full results. </p> <p>You should also establish a protocol for allowing the client to resend a message if they have not received a full response within an established time. </p> http://stackoverflow.com/questions/292874/volatile-extreme-programming-team/294446#294446 0 Answer by Paul Croarkin for Volatile Extreme Programming Team Paul Croarkin 2008-11-16T21:53:31Z 2008-11-16T21:53:31Z <p>High test coverage and a continuous integration can help ensure that new team members do not break what was previously implemented. Pair programming is the fastest way that I've found to help someone get familiar with a project. Planning meetings, short iterations, and tracking velocity over those iterations could also help new developers easily bite small pieces that are more easily managed.</p> http://stackoverflow.com/questions/294077/hibernate-avoiding-reading-all-the-records-to-memory-at-once/294124#294124 1 Answer by Paul Croarkin for Hibernate: Avoiding reading all the records to memory at once Paul Croarkin 2008-11-16T17:20:16Z 2008-11-16T17:29:32Z <p>Use the setMaxResults() method on Criteria.</p> <pre><code>Criteria crit = sess.createCriteria(Cat.class); crit.setMaxResults(maxResults); crit.setFirstResult(firstResultIndex); List cats = crit.list(); </code></pre> <p><a href="http://hibernate.org/hib_docs/v3/reference/en/html/querycriteria.html" rel="nofollow">http://hibernate.org/hib_docs/v3/reference/en/html/querycriteria.html</a></p> <p><a href="http://www.hibernate.org/hib_docs/v3/api/org/hibernate/Criteria.html" rel="nofollow">http://www.hibernate.org/hib_docs/v3/api/org/hibernate/Criteria.html</a></p> http://stackoverflow.com/questions/288861/eclipse-optimize-imports-to-include-static-imports/288923#288923 2 Answer by Paul Croarkin for Eclipse Optimize Imports to Include Static Imports Paul Croarkin 2008-11-14T00:54:29Z 2008-11-14T00:54:29Z <p>Not exactly what I wanted, but I found a workaround. In Eclipse 3.4 (Ganymede), go to Window->Preferences->Java->Editor->Content Assist and check the checkbox for "Use static imports (only 1.5 or higher)".</p> <p>This will not bring in the import on an Optimize Imports, but if you do a Quick Fix (crtl-1) on the line it will give you the option to add the static import which is good enough.</p> http://stackoverflow.com/questions/281490/what-do-i-need-to-write-java-based-web-applications-and-test-them-on-my-personal/281509#281509 1 Answer by Paul Croarkin for What do I need to write Java-based web applications and test them on my personal computer? Paul Croarkin 2008-11-11T17:10:56Z 2008-11-11T17:10:56Z <p>You'll probably also want a database like MySQL or <a href="http://hsqldb.org/" rel="nofollow">HSQLDB</a>. You could replace Tomcat with <a href="http://www.mortbay.org/jetty/" rel="nofollow">Jetty</a> which is often easier to get class changes to reload without restarting the server.</p> http://stackoverflow.com/questions/276130/what-is-good-about-objective-c/276159#276159 7 Answer by Paul Croarkin for What is good about Objective-C? Paul Croarkin 2008-11-09T17:21:42Z 2008-11-09T17:21:42Z <p>Named parameters are very nice.</p> <p>[myRect setOriginX: 30.0 y: 50.0];</p> http://stackoverflow.com/questions/267326/how-can-i-see-post-methods-in-raw-http-that-my-computer-sends-to-a-page/267355#267355 2 Answer by Paul Croarkin for how can I see POST methods in raw HTTP that my computer sends to a page? Paul Croarkin 2008-11-06T01:04:00Z 2008-11-06T01:04:00Z <p><a href="http://livehttpheaders.mozdev.org/" rel="nofollow">Live HTTP Headers</a> is a nice Firefox plug-in.</p> http://stackoverflow.com/questions/263926/barest-bare-boned-operating-system-possible/264040#264040 0 Answer by Paul Croarkin for Barest Bare Boned Operating System Possible Paul Croarkin 2008-11-05T00:52:37Z 2008-11-05T00:52:37Z <p><a href="http://www.toms.net/rb/" rel="nofollow">tomsrtbt</a>: "The most GNU/Linux on 1 floppy disk."</p> http://stackoverflow.com/questions/262816/when-would-you-call-javas-thread-run-instead-of-thread-start/262840#262840 11 Answer by Paul Croarkin for When would you call java's thread.run() instead of thread.start()? Paul Croarkin 2008-11-04T18:26:40Z 2008-11-04T18:26:40Z <p>You might want to call run() in a particular unit test that is concerned strictly with functionality and not with concurrency.</p> http://stackoverflow.com/questions/1675749/escaping-an-apostrophe-in-java Comment by Paul Croarkin on Escaping an apostrophe in Java Paul Croarkin 2009-11-04T21:09:37Z 2009-11-04T21:09:37Z &quot;The crux of the biscuit is the apostrophe&quot; - FZ http://stackoverflow.com/questions/1676432/nervous-running-queries-sql-server-what-do-you-think-about-this Comment by Paul Croarkin on Nervous Running Queries (SQL Server): What do you think about this? Paul Croarkin 2009-11-04T20:38:41Z 2009-11-04T20:38:41Z Do you have lower environments that you can test the query in before running it in Production? http://stackoverflow.com/questions/583078/piecemeal-conversion-from-struts-to-tapestry-5/584796#584796 Comment by Paul Croarkin on Piecemeal Conversion from Struts to Tapestry 5 Paul Croarkin 2009-02-26T16:21:58Z 2009-02-26T16:21:58Z I've gone ahead with a proof of concept that Struts and Tapestry can live within the same application by adding a Tapestry page. Further work will need to be done to see if there are issues with linking back and forth between the two, session data, etc http://stackoverflow.com/questions/442924/dry-between-production-and-test-code-constants/442955#442955 Comment by Paul Croarkin on DRY between Production and Test Code Constants Paul Croarkin 2009-01-14T13:49:05Z 2009-01-14T13:49:05Z I agree that if the requirement changes, test should change. I'm concerned that the constant may be used in more than one place and the requirement may change for the one place but remain the same for the other place. http://stackoverflow.com/questions/352899/exception-handling Comment by Paul Croarkin on Exception Handling Paul Croarkin 2008-12-09T14:33:03Z 2008-12-09T14:33:03Z What do you mean by 'structured'? http://stackoverflow.com/questions/294077/hibernate-avoiding-reading-all-the-records-to-memory-at-once/294124#294124 Comment by Paul Croarkin on Hibernate: Avoiding reading all the records to memory at once Paul Croarkin 2008-11-16T19:23:54Z 2008-11-16T19:23:54Z I'm not sure what you mean by &quot;have all the results out in a transactional fashion&quot;. http://stackoverflow.com/questions/259660/painless-analysis-of-algorithms-training/259674#259674 Comment by Paul Croarkin on Painless 'Analysis of Algorithms' Training? Paul Croarkin 2008-11-03T19:45:19Z 2008-11-03T19:45:19Z Wow. At 1056 pages, I'm sure it is heavy. http://stackoverflow.com/questions/257251/eclipse-shortcut-to-split-long-strings/257278#257278 Comment by Paul Croarkin on Eclipse Shortcut to Split Long Strings Paul Croarkin 2008-11-02T20:33:47Z 2008-11-02T20:33:47Z Just tried it. With my settings the + ends up on the next line after a ctrl+SHIFT-F http://stackoverflow.com/questions/257251/eclipse-shortcut-to-split-long-strings/257252#257252 Comment by Paul Croarkin on Eclipse Shortcut to Split Long Strings Paul Croarkin 2008-11-02T19:39:00Z 2008-11-02T19:39:00Z Too easy! Thanks! http://stackoverflow.com/questions/255703/jpa-hibernate-select-column-subset-on-join/255752#255752 Comment by Paul Croarkin on JPA / Hibernate Select Column Subset on Join Paul Croarkin 2008-11-01T21:06:38Z 2008-11-01T21:06:38Z It then goes on to say &quot;A different (better?) way to avoid unnecessary column reads, at least for read-only transactions is to use the projection features of HQL or Criteria queries. This avoids the need for buildtime bytecode processing and is certainly a preferred solution.&quot; http://stackoverflow.com/questions/255703/jpa-hibernate-select-column-subset-on-join/255752#255752 Comment by Paul Croarkin on JPA / Hibernate Select Column Subset on Join Paul Croarkin 2008-11-01T21:05:32Z 2008-11-01T21:05:32Z The documentation says &quot;Lazy property loading requires buildtime bytecode instrumentation! If your persistent classes are not enhanced, Hibernate will silently ignore lazy property settings and fall back to immediate fetching.&quot; http://stackoverflow.com/questions/253692/weblogic-plugin-within-eclipse/253892#253892 Comment by Paul Croarkin on WebLogic plugin within Eclipse Paul Croarkin 2008-10-31T16:59:34Z 2008-10-31T16:59:34Z Actually re-reading the error message, I think that it is actually looking for it in your PATH rather than CLASSPATH. http://stackoverflow.com/questions/253692/weblogic-plugin-within-eclipse/253892#253892 Comment by Paul Croarkin on WebLogic plugin within Eclipse Paul Croarkin 2008-10-31T16:53:16Z 2008-10-31T16:53:16Z Probably due to differences in versions. I no longer have WLS 8.1 installed; I'm currently running 9.2. Either way, I think you should add the location to your classpath. http://stackoverflow.com/questions/253987/sql-searching-by-max/254003#254003 Comment by Paul Croarkin on SQL Searching by MAX() Paul Croarkin 2008-10-31T16:49:54Z 2008-10-31T16:49:54Z Thank you very much! http://stackoverflow.com/questions/253987/sql-searching-by-max/254019#254019 Comment by Paul Croarkin on SQL Searching by MAX() Paul Croarkin 2008-10-31T16:45:32Z 2008-10-31T16:45:32Z This returns all the documents. I only want the most recent document.