User Chris Nava - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T13:53:26Zhttp://stackoverflow.com/feeds/user/45163http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/879467/how-can-i-check-out-just-the-trunks-of-multiple-projects-from-the-same-repository3How can i check out just the trunks of multiple projects from the same repository.Chris Nava2009-05-18T19:51:40Z2009-12-10T09:49:01Z
<p>We have a single SVN repository with multiple related projects. Like so...</p>
<pre><code>\repo
\Project1
\branches
\tags
\trunk
\Project2
\branches
\tags
\trunk
\Project3
\branches
\tags
\trunk
</code></pre>
<p>I would like to check out the trunk of each project into my workspace without the branches/tags folders.</p>
<pre><code>\workspace
\Project1
\trunk
\Project2
\trunk
\Project3
\trunk
</code></pre>
<p><strong>Is there a way to do this without checking each trunk out individually?</strong></p>
http://stackoverflow.com/questions/1878150/strategies-for-deploying-an-exploded-ear/1878608#18786081Answer by Chris Nava for Strategies for deploying an exploded earChris Nava2009-12-10T04:20:40Z2009-12-10T04:20:40Z<p>An .ear file is a .zip file. To deploy an exploded version just unzip the contents into a folder named *.ear.</p>
http://stackoverflow.com/questions/410359/how-can-i-learn-to-write-well-structured-programs-in-perl/410700#4107002Answer by Chris Nava for How can I learn to write well-structured programs in Perl?Chris Nava2009-01-04T09:01:54Z2009-12-05T18:27:46Z<p>Personally, I didn't write good OO Perl until I started learning Java. I recommend you spend a small amount of time learning OO in a true OO language and apply what you learn to Perl.</p>
<p>For a place to be mentored, <a href="http://perlmonks.org/" rel="nofollow">PerlMonks</a> is GREAT.</p>
http://stackoverflow.com/questions/1829223/limiting-thread-execution-processor-cycles-in-java/1829384#18293840Answer by Chris Nava for Limiting Thread Execution Processor Cycles in JavaChris Nava2009-12-01T22:27:09Z2009-12-01T22:27:09Z<p>I think <a href="http://robocode.sourceforge.net/" rel="nofollow">Robocode</a> does something similar... you may want to look there.</p>
http://stackoverflow.com/questions/1795046/xml-parsing-problems/1795219#17952191Answer by Chris Nava for XML parsing problemsChris Nava2009-11-25T07:27:19Z2009-11-25T07:27:19Z<p>Try JAXB. It will parse the XML and bind the attributes to objects. You can create an XSD from the XML and JAXB will generate the class files and do the parsing.</p>
http://stackoverflow.com/questions/1699338/how-to-import-an-already-checked-out-svn-repository-into-eclipse/1699339#16993392Answer by Chris Nava for How to import an already checked out svn repository into Eclipse?Chris Nava2009-11-09T02:56:30Z2009-11-09T06:10:01Z<p>"Import..." the existing project then "Share..." the project. The Subversive (or SubClipse) client will realize that the project has a .svn folder and reattach to the repository.</p>
http://stackoverflow.com/questions/1687323/from-java-code-to-uml-diagram/1688332#16883322Answer by Chris Nava for From Java code to UML diagramChris Nava2009-11-06T15:30:31Z2009-11-06T15:30:31Z<p><a href="http://www.eclipseplugincentral.com/Web%5FLinks-index-req-viewlink-cid-630.html" rel="nofollow">AmaterasUML</a> is an Eclipse plugin that can take a class (or several) and generate a class diagram. Just drag their .java files onto a blank class diagram.</p>
<p>The diagrams are static (changing the .java does not update the diagram) so I generally don't save the class diagram for long. They are mostly useful for visualization of existing code.</p>
<p>I also find the diagrams helpful during code reviews to give an overview before diving into the code.</p>
http://stackoverflow.com/questions/1627211/how-to-set-up-maven-for-two-separate-projects-that-depend-on-the-same-jar/1627409#16274093Answer by Chris Nava for How to set up maven for two separate projects that depend on the same jar.Chris Nava2009-10-26T21:22:43Z2009-10-26T21:22:43Z<p>You shouldn't be adding the .jars into your projects. You should be adding JAR dependencies to your .pom files. Maven will download the .jars for you. You will have to create .pom files for each in-house .jar and add them to your maven repository (or proxy if you have one.)</p>
http://stackoverflow.com/questions/1595256/problem-while-compiling-java-code-on-network-drive-it-creating-class-files-in-lo/1595615#15956150Answer by Chris Nava for problem while compiling java code on network drive, it creating class files in lowercaseChris Nava2009-10-20T15:49:48Z2009-10-20T15:49:48Z<p>IIRC the Samba SMB server has options for "fixing" the case of file names. You may want to look into you SMB configuration.</p>
http://stackoverflow.com/questions/1564492/while-copying-plist-to-somewhere-else-filetype-getting-changed/1567256#15672560Answer by Chris Nava for While Copying plist to somewhere else filetype getting changedChris Nava2009-10-14T15:55:46Z2009-10-14T15:55:46Z<p>Your OS may be using the execute bit to determine if the file is an executable vs. a document.
Try changing the execute bit of the file...</p>
<pre><code>chmod a+x {filename}
</code></pre>
http://stackoverflow.com/questions/879467/how-can-i-check-out-just-the-trunks-of-multiple-projects-from-the-same-repository/1442572#14425720Answer by Chris Nava for How can i check out just the trunks of multiple projects from the same repository.Chris Nava2009-09-18T04:18:38Z2009-09-18T04:18:38Z<p>This did the trick nicely in bash. Note that I renamed the output folders to make Eclipse happier when importing the projects.</p>
<pre><code>for f in `svn ls http://path/to/repo`; do svn checkout http://path/to/repo/${f}trunk $f; done
</code></pre>
http://stackoverflow.com/questions/1428887/how-do-you-know-there-may-be-an-exception/1429602#14296021Answer by Chris Nava for How do you know there may be an exception?Chris Nava2009-09-15T21:02:16Z2009-09-16T18:45:30Z<p>For you second question, <em>In general</em>...</p>
<p>Packages that start with "<strong>java.</strong>" or "<strong>javax.</strong>" are in the <a href="http://java.sun.com/javase/6/docs/api/overview-frame.html" rel="nofollow">J2SE API</a>.</p>
<p>Most packages starting with a internet domain prefix like "com." or "org." are supplied by third parties. Don't count on com.sun being stable though.</p>
<p>Packages with none of prefixes the above are likely not following the package <a href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html" rel="nofollow">naming guidelines</a> or predate them.</p>
http://stackoverflow.com/questions/1409527/how-to-put-the-barcode-reader-scanner-output-in-textarea-of-form-developed-in-swi/1411962#14119620Answer by Chris Nava for How to put the BarCode reader/scanner output in textarea of form developed in swing JavaChris Nava2009-09-11T16:25:58Z2009-09-11T16:25:58Z<p>Two options, make the form field have focus before scanning... or capture keyboard events and direct them to the form field.</p>
http://stackoverflow.com/questions/1410488/enabling-logging-of-a-third-party-component/1411111#14111110Answer by Chris Nava for Enabling logging of a third party componentChris Nava2009-09-11T14:11:18Z2009-09-11T14:11:18Z<p>Add this to your log4j.xml file</p>
<pre><code><category name="org.mortbay">
<priority value="debug" />
</category>
</code></pre>
http://stackoverflow.com/questions/1314595/versioned-serialization-in-java/1315141#13151410Answer by Chris Nava for Versioned Serialization in JavaChris Nava2009-08-22T04:28:47Z2009-08-22T04:28:47Z<p>Never tired it but you may be able to do something with a custom bootloader to load the correct version of the class file at runtime for the object being deserialized. </p>
http://stackoverflow.com/questions/1217521/connection-between-applet-on-network/1217638#12176382Answer by Chris Nava for connection between applet on networkChris Nava2009-08-01T22:29:57Z2009-08-01T22:29:57Z<p>Browser based applets are not allowed to talk to any other domain then the one which loaded them. This is a security feature of the browser and java (signed applets may be allowed more permissions but things get complicated fast.) The easiest way to overcome this limitation is to have your server proxy information between two or more clients. This means that the clients only talk to the server but the server can talk to each client and can therefore act as a middle man or referee.</p>
http://stackoverflow.com/questions/1211333/storing-passwords-for-batch-jobs/1213606#12136060Answer by Chris Nava for Storing passwords for batch jobsChris Nava2009-07-31T16:40:49Z2009-07-31T16:40:49Z<p>The simple answer is:</p>
<p><strong>You can't make it <em>entirely</em> secure but you can make it <em>marginally more</em> secure.</strong></p>
<p>You CAN NOT hash the password because this would prevent it's use by your program.</p>
<p>You CAN put the password in a file and protect the file using the OS permissions. You will need to allow the process executing your program read access. This prevents anyone without administrator rights from viewing the password.</p>
<p>You CAN encrypt the password and provide the key in your program. This prevents casual observation of the password by those who can read the file but will not stop (or even slow down much) someone with access to the password and your program.</p>
<p>Anything else is more or less theater.</p>
http://stackoverflow.com/questions/1177124/why-is-capitalising-class-names-in-java-and-others-only-a-suggestion-and-not-a/1178302#11783020Answer by Chris Nava for Why is capitalising class names in Java (and others) only a suggestion and not a rule?Chris Nava2009-07-24T15:08:15Z2009-07-24T15:08:15Z<p>Perl has a "use strict" directive that enforces some (but not this particular) best practices. Why not add a -strict option on javac that enforces such best practice conventions on the code being compiled? This could still allow the use of .jar or .class libraries that don't follow the standard but enforce it on anything new being compiled (.java)... Or better yet, turn it on by default and provide a -relaxed directive to turn off the enforcement, thus encouraging everyone to follow the standard more closely without penalizing those that, for whatever reason, can not.</p>
http://stackoverflow.com/questions/1125415/creating-a-separate-folder-in-the-same-package-eclipse/1126114#11261140Answer by Chris Nava for Creating a separate Folder in the same package... [ECLIPSE]Chris Nava2009-07-14T15:19:02Z2009-07-14T15:24:48Z<p>You want to create a new child package (bar) of the existing package. (com.foo)</p>
<p>Select new package and name it "<strong>com.foo.bar</strong>". Eclipse will correctly place it under com.foo.</p>
<p>FYI: Folders under any "source" folder are shown as packages. There is no physical difference except that they appear on the build path. As shown elsewhere you can exclude them but it's easier to just not put them under /src/... to begin with.</p>
http://stackoverflow.com/questions/331388/svn-replace-trunk-with-branch/331531#3315313Answer by Chris Nava for svn: replace trunk with branchChris Nava2008-12-01T17:19:58Z2009-07-14T05:29:29Z<p>Recommend you do these changes via the repository browser tool.</p>
<p>Attempting large delete+move operations via the working copy is a great way to kill the working copy.
If you are forced to use the working copy, perform incremental commits after each delete or move operation and UPDATE your working copy after each commit.</p>
http://stackoverflow.com/questions/1059851/is-it-possible-to-package-all-the-jar-dependencies-in-one-big-jar/1064202#10642020Answer by Chris Nava for Is it possible to package all the jar dependencies in one big jar ?Chris Nava2009-06-30T15:06:08Z2009-06-30T15:06:08Z<p>Also remember that .jar files are .zip files under the covers. You can use your favorite zip tools to (re)package them. In this case, you would have to deal with the manifest file yourself.</p>
http://stackoverflow.com/questions/1019410/how-can-i-configure-jboss-jdbc-data-source-connections-outside-the-xml-config-fil0How can I configure JBoss JDBC data source connections outside the XML config file?Chris Nava2009-06-19T18:29:07Z2009-06-21T23:27:56Z
<p>I would like to override the portion of JBoss that loads JDBC connection information from the XML config file. I would like to continue using the rest of JBoss's connection pooling/caching features. I just want to load the connection data from another source.</p>
<p><strong>Which MBean should I be implementing and how do I configure the override in JBoss?</strong></p>
http://stackoverflow.com/questions/969849/automatic-keystroke-to-stay-logged-in/971984#9719842Answer by Chris Nava for automatic keystroke to stay logged inChris Nava2009-06-09T19:18:29Z2009-06-09T19:18:29Z<p>Pinging an IP will not likely keep your session from timing out.
You will likely need to do an HTTP GET and include the session cookie supplied by the server to your browser when you login. Your script <strong>may</strong> be able to read the cookie from your browser's cookies folder after you have logged in via the browser.</p>
<p>Also, the web page may have javascript that calls the logout page when it times out. You <strong>may</strong> be able to use codemonkey to disable this behavior.</p>
http://stackoverflow.com/questions/958508/eclipse-sync-workspaces-perspectives-preferences-across-computers/958867#9588670Answer by Chris Nava for Eclipse sync workspaces/perspectives/preferences across computersChris Nava2009-06-06T02:33:18Z2009-06-06T02:33:18Z<p>Eclipse and most other java tools are easily portable.</p>
<p>You can copy the them to a thumb drive and run them on any machine. For the JDK it needs to have a similar OS.</p>
<p>I have a "C:\Development" folder with eclipse, java, jboss, workspace, ant, maven, svn, etc.. which I can unzip and drop in C: on any windows machine and run my environment.</p>
<p>I don't run it off the thumb drive because you never know which letter the drive will get and some of the references eclipse keeps are fully qualified.</p>
http://stackoverflow.com/questions/956416/maven-apply-plugin-only-to-one-of-several-modules/957726#9577261Answer by Chris Nava for Maven: apply plugin only to one of several modulesChris Nava2009-06-05T19:33:40Z2009-06-05T19:33:40Z<p>Move the < plugin >...< /plugin > directive in to the module1/pom.xml file.</p>
http://stackoverflow.com/questions/950076/a-good-place-to-put-autogenerated-code/950909#9509094Answer by Chris Nava for A good place to put autogenerated code?Chris Nava2009-06-04T14:21:27Z2009-06-04T14:21:27Z<p>Summary of best practices:</p>
<ul>
<li>Make it repeatable
<ul>
<li>Create generated code as part of a build process.</li>
<li>Don't check generated code into source control. (Do check in the source. e.g. WSDL)</li>
</ul></li>
<li>Keep generated code separate from managed code
<ul>
<li>Use a different source folder for generated output.</li>
<li>Deliver a separate .jar so that this generated code becomes a dependency.</li>
<li>Consider using a different IDE project (or maven module)</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/947530/coldfusion-cfhttp-post-is-doing-a-second-get-request-right-after/947908#9479080Answer by Chris Nava for ColdFusion CFHTTP Post is doing a second GET request right afterChris Nava2009-06-03T23:56:00Z2009-06-03T23:56:00Z<p>Is this code inside a custom CF tag? If so then calling</p>
<pre><code><mytag>...</mytag>
</code></pre>
<p>or</p>
<pre><code><mytag />
</code></pre>
<p>Calls the custom tag TWICE! (Once for the start tag and once for the end.)</p>
http://stackoverflow.com/questions/945971/use-a-custom-classloader-at-compile-time/947444#9474440Answer by Chris Nava for Use a custom classloader at compile timeChris Nava2009-06-03T21:45:08Z2009-06-03T21:45:08Z<p>If the classes all conform to the same Interface you could just provide that at compile time..</p>
<p>If not then I don't see what you are gaining by not outputing .java files based on the DB and compiling that.</p>
http://stackoverflow.com/questions/172380/programming-texts-and-reference-material-for-my-kindle-dx-creating-the-ultimate/942836#9428361Answer by Chris Nava for Programming texts and reference material for my Kindle DX, creating the ultimate reference device?Chris Nava2009-06-03T02:42:17Z2009-06-03T02:42:17Z<p><a href="http://svnbook.red-bean.com/en/1.5/svn-book.pdf" rel="nofollow">Version Control with Subversion</a></p>
http://stackoverflow.com/questions/942162/version-numbers-is-1-13-1-2/942290#9422903Answer by Chris Nava for Version numbers is 1.13 > 1.2?Chris Nava2009-06-02T22:42:48Z2009-06-02T22:42:48Z<p>I prefer to always zero pad version numbers to avoid confusion and allow them to sort properly in "version unaware" applications. In this case I would number 1.13 > 1.02</p>
<p>The advantage is that it sorts properly both numerically and alphabetically.</p>
http://stackoverflow.com/questions/1902679/try-and-catch-in-for-statements/1902697#1902697Comment by Chris Nava on try and catch in for statementsChris Nava2009-12-14T22:04:43Z2009-12-14T22:04:43ZIn the former case you can elect to discard the offending input and continue.
In the later case the y[] array will likely contain a partial set of data in the event of an exception. You may need to clean that up as part of the fix.http://stackoverflow.com/questions/1878150/strategies-for-deploying-an-exploded-ear/1878608#1878608Comment by Chris Nava on Strategies for deploying an exploded earChris Nava2009-12-11T05:44:54Z2009-12-11T05:44:54Z^^ YES. I have seen it happen. ;-)http://stackoverflow.com/questions/1878150/strategies-for-deploying-an-exploded-ear/1878608#1878608Comment by Chris Nava on Strategies for deploying an exploded earChris Nava2009-12-11T05:44:11Z2009-12-11T05:44:11ZI prefer to bite the bullet on unzipping the ear to ensure that the production servers have EXACTLY the same tree structure that I'm testing locally. IMHO, QA should be deployed EXACTLY like production so if one gets an exploded folder.ear they both should. You'll kick yourself when you suffer a bug (or worse an outage) in production due to an issue with file.ear vs. folder.ear.http://stackoverflow.com/questions/1878150/strategies-for-deploying-an-exploded-ear/1878608#1878608Comment by Chris Nava on Strategies for deploying an exploded earChris Nava2009-12-11T05:40:12Z2009-12-11T05:40:12ZYou could generate the build in a dependent target and and then <jar> or <copy> it using two others. This puts the logic to build the tree in one place and the logic to zip or copy it outside that process.http://stackoverflow.com/questions/1841283/eclipse-galileo-why-does-initializing-java-tooling-59-take-forever/1841777#1841777Comment by Chris Nava on Eclipse (Galileo) : Why does "Initializing Java Tooling : 59%" take FOREVER?Chris Nava2009-12-03T20:00:49Z2009-12-03T20:00:49ZRecommend you save off a copy of your eclipse folder and workspace folder before the test so you can restore it after you find the offending plugin.http://stackoverflow.com/questions/1817471/svn-causes-build-errors-in-eclipseComment by Chris Nava on svn causes build errors in eclipseChris Nava2009-11-30T05:09:22Z2009-11-30T05:09:22ZIf you have the Eclipse SVN plugin installed then most likely your .project and/or .classpath files are incorrect. If not then I would start with the plugin.http://stackoverflow.com/questions/1783365/log4j-runtime-variable-substitution/1783427#1783427Comment by Chris Nava on Log4J – Runtime variable substitutionChris Nava2009-11-23T15:29:18Z2009-11-23T15:29:18ZYou can't use ${file_pattern} to reference a value from a properties file outside the properties file. In code you need to use java variables. Check to see if Log4j exposes its properties and if it does you will not need to read the file yourself. If not then you are correct re: the Properties class.http://stackoverflow.com/questions/54882/how-do-i-in-java-add-a-stacktrace-to-my-debugging-printout/54944#54944Comment by Chris Nava on How do I in java add a stacktrace to my debugging printoutChris Nava2009-11-16T17:23:42Z2009-11-16T17:23:42ZUse logging. Printing to stdout/stderr should only be done by OS utilities and "Hello World" apps.http://stackoverflow.com/questions/54882/how-do-i-in-java-add-a-stacktrace-to-my-debugging-printout/59775#59775Comment by Chris Nava on How do I in java add a stacktrace to my debugging printoutChris Nava2009-11-16T17:22:13Z2009-11-16T17:22:13Z+1 for not using stdout/stderrhttp://stackoverflow.com/questions/1723073/is-it-possible-to-list-available-timezones-by-locale-in-java/1723179#1723179Comment by Chris Nava on Is it possible to list available TimeZones by Locale in Java?Chris Nava2009-11-12T19:01:14Z2009-11-12T19:01:14Z+1 for working example code.http://stackoverflow.com/questions/1687323/from-java-code-to-uml-diagram/1688332#1688332Comment by Chris Nava on From Java code to UML diagramChris Nava2009-11-08T17:58:40Z2009-11-08T17:58:40ZYou're welcome. I should note that dragging multiple classes at once onto a diagram will connect the class images with arrows. Adding them on at a time will not.http://stackoverflow.com/questions/1675749/escaping-an-apostrophe-in-java/1675762#1675762Comment by Chris Nava on Escaping an apostrophe in JavaChris Nava2009-11-04T19:22:17Z2009-11-04T19:22:17Z+1 for XKCD reference <a href="http://xkcd.com/327/" rel="nofollow">xkcd.com/327</a>http://stackoverflow.com/questions/1669305/how-does-jvm-deal-with-duplicate-jars-of-different-versions/1669342#1669342Comment by Chris Nava on How does JVM deal with duplicate JARs of different versionsChris Nava2009-11-03T19:18:12Z2009-11-03T19:18:12ZIn general this is correct. However, it depends on the implementation of the classloader. For example, when loading classes within a web framework the deployed jar/war/ear/sar files may be checked before the official classpath.http://stackoverflow.com/questions/1627211/how-to-set-up-maven-for-two-separate-projects-that-depend-on-the-same-jar/1627409#1627409Comment by Chris Nava on How to set up maven for two separate projects that depend on the same jar.Chris Nava2009-10-27T15:07:20Z2009-10-27T15:07:20ZYou may also want to read up on _SNAPSHOT versions. Using a snapshot version in your POM allows you to tell maven to get a fresh copy of the .jar (without upping the version number) each time you do a build.
Be sure to remove the _SNAPSHOT for your final release.http://stackoverflow.com/questions/1622059/what-is-the-error-in-this-string-loop/1622065#1622065Comment by Chris Nava on What is the error in this string loop?Chris Nava2009-10-26T03:04:13Z2009-10-26T03:04:13ZAlso, unless you want to start at the <i>second to</i> last character, use (int index = len-1 ...