User Paul Croarkin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T11:18:34Zhttp://stackoverflow.com/feeds/user/18995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1827008/numbering-messages-in-enterprise-architect-communication-diagrams0Numbering Messages in Enterprise Architect Communication DiagramsPaul Croarkin2009-12-01T15:41:43Z2009-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#18270670Answer by Paul Croarkin for Numbering Messages in Enterprise Architect Communication DiagramsPaul Croarkin2009-12-01T15:51:21Z2009-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-imports9Eclipse Optimize Imports to Include Static ImportsPaul Croarkin2008-11-14T00:19:55Z2009-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-lazyinitializationexceptions5Strategies to avoid Hibernate LazyInitializationExceptionsPaul Croarkin2008-10-18T23:52:30Z2009-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-templates1Eclipse Custom Variable for Java Code TemplatesPaul Croarkin2008-12-08T19:38:08Z2009-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#15678181Answer by Paul Croarkin for Design Pattern rich code base ? Paul Croarkin2009-10-14T17:35:07Z2009-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#15676190Answer by Paul Croarkin for Text Classification in JavaPaul Croarkin2009-10-14T16:56:17Z2009-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-eclipse7How to Force Thread Dump in Eclipse?Paul Croarkin2008-10-28T13:31:01Z2009-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-tests2Unrooted TestsPaul Croarkin2008-09-23T13:12:46Z2009-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-binding6Java XML BindingPaul Croarkin2008-10-15T17:57:13Z2009-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-nosuchbeandefinitionexception1How to Debug Spring NoSuchBeanDefinitionExceptionPaul Croarkin2008-12-17T19:04:58Z2009-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-52Piecemeal Conversion from Struts to Tapestry 5Paul Croarkin2009-02-24T18:55:27Z2009-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-iteraction1Documenting Web Application Flow / IteractionPaul Croarkin2009-05-05T14:55:50Z2009-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-constants2DRY between Production and Test Code ConstantsPaul Croarkin2009-01-14T13:27:43Z2009-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#4429870Answer by Paul Croarkin for How to Debug Spring NoSuchBeanDefinitionExceptionPaul Croarkin2009-01-14T13:43:49Z2009-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-file2Log4j Logging to a Shared Log FilePaul Croarkin2008-11-12T19:39:07Z2008-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#3529372Answer by Paul Croarkin for Exception HandlingPaul Croarkin2008-12-09T14:39:49Z2008-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#3439220Answer by Paul Croarkin for Mapping ORACLE's NUMBER Type with HibernatePaul Croarkin2008-12-05T14:03:17Z2008-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#3104650Answer by Paul Croarkin for Best way to configure a Java enterprise applicationPaul Croarkin2008-11-21T22:46:37Z2008-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#3063780Answer by Paul Croarkin for bootable Linux cd that can be modifiedPaul Croarkin2008-11-20T18:36:13Z2008-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-httpunit1Replacement for JWebUnit / HttpUnitPaul Croarkin2008-11-19T00:57:12Z2008-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#2968000Answer by Paul Croarkin for Long Transaction Time Solution for JEE?Paul Croarkin2008-11-17T20:31:39Z2008-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#2944460Answer by Paul Croarkin for Volatile Extreme Programming TeamPaul Croarkin2008-11-16T21:53:31Z2008-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#2941241Answer by Paul Croarkin for Hibernate: Avoiding reading all the records to memory at oncePaul Croarkin2008-11-16T17:20:16Z2008-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#2889232Answer by Paul Croarkin for Eclipse Optimize Imports to Include Static ImportsPaul Croarkin2008-11-14T00:54:29Z2008-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#2815091Answer by Paul Croarkin for What do I need to write Java-based web applications and test them on my personal computer?Paul Croarkin2008-11-11T17:10:56Z2008-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#2761597Answer by Paul Croarkin for What is good about Objective-C?Paul Croarkin2008-11-09T17:21:42Z2008-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#2673552Answer by Paul Croarkin for how can I see POST methods in raw HTTP that my computer sends to a page?Paul Croarkin2008-11-06T01:04:00Z2008-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#2640400Answer by Paul Croarkin for Barest Bare Boned Operating System PossiblePaul Croarkin2008-11-05T00:52:37Z2008-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#26284011Answer by Paul Croarkin for When would you call java's thread.run() instead of thread.start()?Paul Croarkin2008-11-04T18:26:40Z2008-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-javaComment by Paul Croarkin on Escaping an apostrophe in JavaPaul Croarkin2009-11-04T21:09:37Z2009-11-04T21:09:37Z"The crux of the biscuit is the apostrophe" - FZhttp://stackoverflow.com/questions/1676432/nervous-running-queries-sql-server-what-do-you-think-about-thisComment by Paul Croarkin on Nervous Running Queries (SQL Server): What do you think about this?Paul Croarkin2009-11-04T20:38:41Z2009-11-04T20:38:41ZDo 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#584796Comment by Paul Croarkin on Piecemeal Conversion from Struts to Tapestry 5Paul Croarkin2009-02-26T16:21:58Z2009-02-26T16:21:58ZI'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, etchttp://stackoverflow.com/questions/442924/dry-between-production-and-test-code-constants/442955#442955Comment by Paul Croarkin on DRY between Production and Test Code ConstantsPaul Croarkin2009-01-14T13:49:05Z2009-01-14T13:49:05ZI 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-handlingComment by Paul Croarkin on Exception HandlingPaul Croarkin2008-12-09T14:33:03Z2008-12-09T14:33:03ZWhat do you mean by 'structured'?http://stackoverflow.com/questions/294077/hibernate-avoiding-reading-all-the-records-to-memory-at-once/294124#294124Comment by Paul Croarkin on Hibernate: Avoiding reading all the records to memory at oncePaul Croarkin2008-11-16T19:23:54Z2008-11-16T19:23:54ZI'm not sure what you mean by "have all the results out in a transactional fashion". http://stackoverflow.com/questions/259660/painless-analysis-of-algorithms-training/259674#259674Comment by Paul Croarkin on Painless 'Analysis of Algorithms' Training?Paul Croarkin2008-11-03T19:45:19Z2008-11-03T19:45:19ZWow. At 1056 pages, I'm sure it is heavy.http://stackoverflow.com/questions/257251/eclipse-shortcut-to-split-long-strings/257278#257278Comment by Paul Croarkin on Eclipse Shortcut to Split Long StringsPaul Croarkin2008-11-02T20:33:47Z2008-11-02T20:33:47ZJust tried it. With my settings the + ends up on the next line after a ctrl+SHIFT-Fhttp://stackoverflow.com/questions/257251/eclipse-shortcut-to-split-long-strings/257252#257252Comment by Paul Croarkin on Eclipse Shortcut to Split Long StringsPaul Croarkin2008-11-02T19:39:00Z2008-11-02T19:39:00ZToo easy! Thanks!http://stackoverflow.com/questions/255703/jpa-hibernate-select-column-subset-on-join/255752#255752Comment by Paul Croarkin on JPA / Hibernate Select Column Subset on JoinPaul Croarkin2008-11-01T21:06:38Z2008-11-01T21:06:38ZIt then goes on to say "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." http://stackoverflow.com/questions/255703/jpa-hibernate-select-column-subset-on-join/255752#255752Comment by Paul Croarkin on JPA / Hibernate Select Column Subset on JoinPaul Croarkin2008-11-01T21:05:32Z2008-11-01T21:05:32ZThe documentation says "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."http://stackoverflow.com/questions/253692/weblogic-plugin-within-eclipse/253892#253892Comment by Paul Croarkin on WebLogic plugin within EclipsePaul Croarkin2008-10-31T16:59:34Z2008-10-31T16:59:34ZActually 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#253892Comment by Paul Croarkin on WebLogic plugin within EclipsePaul Croarkin2008-10-31T16:53:16Z2008-10-31T16:53:16ZProbably 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#254003Comment by Paul Croarkin on SQL Searching by MAX()Paul Croarkin2008-10-31T16:49:54Z2008-10-31T16:49:54ZThank you very much!http://stackoverflow.com/questions/253987/sql-searching-by-max/254019#254019Comment by Paul Croarkin on SQL Searching by MAX()Paul Croarkin2008-10-31T16:45:32Z2008-10-31T16:45:32ZThis returns all the documents. I only want the most recent document.