User Kjetil &#216;degaard - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:38:22Z http://stackoverflow.com/feeds/user/74185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882525/scripting-the-websphere-7-rad/994691#994691 0 Answer by Kjetil Ødegaard for Scripting the Websphere 7 RAD Kjetil Ødegaard 2009-06-15T06:17:31Z 2009-06-15T06:17:31Z <p>You can use the ejbdeploy command to generate the deployment code. It's bundled with both RAD and WAS.</p> <p>See <a href="http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.etools.ejbdeploy.doc/topics/tegenc.html" rel="nofollow">"Generating EJB deployment code from the command line" at the WAS infocenter</a>.</p> http://stackoverflow.com/questions/686897/is-c-like-resource-management-possible-in-java/687013#687013 2 Answer by Kjetil Ødegaard for Is C++ like resource management possible in Java Kjetil Ødegaard 2009-03-26T18:28:15Z 2009-03-26T18:28:15Z <p>Joshua Bloch has proposed adding a mechanism called <a href="http://mail.openjdk.java.net/pipermail/coin-dev/2009-February/000011.html" rel="nofollow">Automatic Resource Management</a> to Java as part of Project Coin (small language changes for JDK 7):</p> http://stackoverflow.com/questions/647392/rspec-gem-does-not-seem-to-install-dependencies/678633#678633 0 Answer by Kjetil Ødegaard for RSpec Gem does not seem to install dependencies... Kjetil Ødegaard 2009-03-24T18:32:24Z 2009-03-24T18:32:24Z <p>Works for me with JRuby trunk:</p> <pre><code>$ jruby -v jruby 1.3.0 (ruby 1.8.6p287) (2009-03-15 r9415) (Java HotSpot(TM) 64-Bit Server VM 1.6.0_07) [x86_64-java] $ jruby -S gem install rspec ************************************************** Thank you for installing rspec-1.2.2 Please be sure to read History.rdoc and Upgrade.rdoc for useful information about this release. ************************************************** Successfully installed rspec-1.2.2 1 gem installed Installing ri documentation for rspec-1.2.2... Installing RDoc documentation for rspec-1.2.2... Could not find main page README.rdoc Could not find main page README.rdoc Could not find main page README.rdoc Could not find main page README.rdoc $ jruby -S spec --help Usage: spec (FILE|DIRECTORY|GLOB)+ [options] ... </code></pre> http://stackoverflow.com/questions/671297/what-is-the-best-java-web-application-framework-that-goes-well-with-xmlxslt/671626#671626 1 Answer by Kjetil Ødegaard for What is the best java web application framework that goes well with xml+xslt? Kjetil Ødegaard 2009-03-22T21:17:56Z 2009-03-22T21:17:56Z <p>Spring MVC has support for XSLT views (<a href="http://static.springframework.org/spring/docs/2.5.x/reference/view.html#view-xslt" rel="nofollow">reference docs</a>).</p> http://stackoverflow.com/questions/405099/sun-branded-competitor-to-net-using-the-jvm/657466#657466 0 Answer by Kjetil Ødegaard for Sun branded competitor to .NET using the JVM Kjetil Ødegaard 2009-03-18T09:07:07Z 2009-03-18T09:07:07Z <p>If you're looking for <a href="http://blogs.sun.com/tor/entry/semplice%5Fkeynote%5Fdemo" rel="nofollow">Visual Basic for the JVM</a>, I'm afraid that project's been cancelled :-)</p> <p>Seriously, after many years of focusing on just the Java language, Sun now directly supports the developers behind both Jython and JRuby, and is changing the JVM and their IDE to better support these languages. Java 6 also includes the Rhino JavaScript runtime now.</p> <p>You're correct that these are not languages that Sun developed from scratch, and I think that's a good thing. The Java ecosystem has a long history of innovation happening in the community, and at a lot of other companies that depend on Java, like IBM and Oracle.</p> <p>I don't really see which problem Sun would be solving by creating brand new languages to support. I'm not even sure JavaFX is best served by having a completely new language. I understand why MS had to support Visual Basic on .NET, but thankfully Sun doesn't have to do that.</p> http://stackoverflow.com/questions/647642/ruby-rails-thread-safety/647670#647670 2 Answer by Kjetil Ødegaard for Ruby/Rails thread safety Kjetil Ødegaard 2009-03-15T11:34:03Z 2009-03-15T11:34:03Z <p>The normal solution for MRI is to run multiple Rails instances, each handling requests independently. Since MRI isn't multithreaded anyway, you can't run multiple Rails instances on top of it. This means you take a memory hit since Rails is loaded once per Ruby process.</p> <p>Since JRuby supports native threads, you could always run several Rails instances in a single JVM. But with Rails being thread-safe, you can cut it down to one, which means lower memory usage and less JIT compilation.</p> <p>Charles Nutter (JRuby) has a <a href="http://blog.headius.com/2008/08/qa-what-thread-safe-rails-means.html" rel="nofollow">nice summary</a>.</p> http://stackoverflow.com/questions/624950/how-can-i-compile-java-code-in-windows-without-installing-the-whole-jdk/625540#625540 1 Answer by Kjetil Ødegaard for How can I compile Java code in Windows without installing the whole JDK? Kjetil Ødegaard 2009-03-09T09:26:56Z 2009-03-09T09:26:56Z <p>You can try <a href="http://jikes.sourceforge.net/" rel="nofollow">Jikes</a>.</p> http://stackoverflow.com/questions/623607/dynamic-sql-java-library/623728#623728 5 Answer by Kjetil Ødegaard for Dynamic SQL Java library Kjetil Ødegaard 2009-03-08T15:24:52Z 2009-03-08T15:24:52Z <p><a href="http://code.google.com/p/squiggle-sql/" rel="nofollow">Squiggle</a> is a library for dynamically generating SELECT statements.</p> http://stackoverflow.com/questions/258954/java-out-with-the-old-in-with-the-new/622385#622385 4 Answer by Kjetil Ødegaard for Java: Out with the Old, In with the New ... Kjetil Ødegaard 2009-03-07T20:03:28Z 2009-03-07T20:03:28Z <p>Changing JUnit 3-style tests:</p> <pre><code>class Test extends TestCase { public void testYadaYada() { ... } } </code></pre> <p>to JUnit 4-style tests:</p> <pre><code>class Test { @Test public void yadaYada() { ... } } </code></pre> http://stackoverflow.com/questions/424341/are-there-any-java-vms-which-can-save-their-state-to-a-file-and-then-reload-that/622382#622382 0 Answer by Kjetil Ødegaard for Are there any Java VMs which can save their state to a file and then reload that state? Kjetil Ødegaard 2009-03-07T19:56:15Z 2009-03-07T19:56:15Z <p>Sun has done some research on "orthogonal persistence", which provides "persistence for the full computational model that is definedby the Java Language Specification":</p> <p><a href="http://research.sun.com/forest/COM.Sun.Labs.Forest.doc.opjspec.abs.html" rel="nofollow">http://research.sun.com/forest/COM.Sun.Labs.Forest.doc.opjspec.abs.html</a></p> <p>PJama is a prototype implementation:</p> <p><a href="http://research.sun.com/forest/opj.main.html" rel="nofollow">http://research.sun.com/forest/opj.main.html</a></p> http://stackoverflow.com/questions/622246/what-does-your-java-development-environment-consist-of/622359#622359 3 Answer by Kjetil Ødegaard for What does your Java development environment consist of? Kjetil Ødegaard 2009-03-07T19:42:05Z 2009-03-07T19:42:05Z <p>If you've used ReSharper in Visual Studio, you should try the original: <a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ IDEA</a>. You can use the <a href="http://www.jetbrains.net/confluence/display/IDEADEV/Diana%2BEAP" rel="nofollow">EAP</a> for free. You can search for and install plugins directly from the IDE.</p> <p>Libraries you should look at are <a href="http://www.springsource.org/documentation" rel="nofollow">Spring</a> and <a href="http://www.hibernate.org/hib%5Fdocs/v3/reference/en-US/html/" rel="nofollow">Hibernate</a>. JUnit 4 for testing (it uses annotations for marking tests, just like NUnit uses attributes).</p> <p>If you make web apps, you'll need a servlet container. Take your pick from <a href="http://tomcat.apache.org/" rel="nofollow">Tomcat</a>, <a href="http://www.mortbay.org/jetty/" rel="nofollow">Jetty</a>, <a href="https://glassfish.dev.java.net/" rel="nofollow">Glassfish</a> or <a href="http://www.caucho.com/" rel="nofollow">Resin</a>. All open source and freely available.</p> <p><a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a> is the de facto standard for version control, but a lot of open source projects now use distributed tools like git or mercurial.</p> <p><a href="http://maven.apache.org/" rel="nofollow">Maven</a> is powerful, but has crap docs and can be difficult to get started with. Ant is probably easier to start with and is not too different from NAnt or MSBuild.</p> <p>I also recommend reading <a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Effective Java (2nd ed)</a> by Josh Bloch for learning some of the standard idioms. <a href="http://www.javapuzzlers.com/" rel="nofollow">Java Puzzlers</a> by Bloch and Gafter gives you some insight into Java's pitfalls. <a href="http://www.manning.com/walls2/" rel="nofollow">Spring in Action</a> is a good Spring book.</p> http://stackoverflow.com/questions/577377/missing-artifact-errors-with-company-repository/619026#619026 2 Answer by Kjetil Ødegaard for "Missing artifact" errors with company repository Kjetil Ødegaard 2009-03-06T14:27:58Z 2009-03-06T14:27:58Z <p>You'll have to add your company repository under the <a href="http://maven.apache.org/pom.html#Repositories" rel="nofollow">"repositories" element</a>.</p> <p>The "mirrors" element is for specifying local mirrors for repositories like "central".</p> http://stackoverflow.com/questions/618839/how-can-i-replace-ant-with-maven/618905#618905 2 Answer by Kjetil Ødegaard for How can I replace Ant with Maven? Kjetil Ødegaard 2009-03-06T13:45:35Z 2009-03-06T13:45:35Z <ol> <li>Set up your project according to the <a href="http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html" rel="nofollow">standard directory layout</a>.</li> <li>Create a <a href="http://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Minimal%5FPOM" rel="nofollow">minimal pom.xml</a> with groupId, artifactId and version.</li> <li>Add your <a href="http://maven.apache.org/pom.html#Dependencies" rel="nofollow">dependencies</a> to the pom.xml</li> </ol> <p>You should now be able to build a simple project, run the tests and package it.</p> http://stackoverflow.com/questions/615825/is-jruby-ready-for-production/617030#617030 0 Answer by Kjetil Ødegaard for Is JRuby ready for production? Kjetil Ødegaard 2009-03-05T22:47:03Z 2009-03-05T22:47:03Z <p>JRuby is among the fastest Ruby implementations right now and definitely production ready.</p> <p>Here's some "success stories" from jruby.org:</p> <p><a href="http://wiki.jruby.org/wiki/Success_Stories" rel="nofollow">http://wiki.jruby.org/wiki/Success_Stories</a></p> http://stackoverflow.com/questions/91256/best-resources-to-prepare-for-the-spring-framework-certification/91268#91268 Comment by Kjetil Ødegaard on Best resources to prepare for the "Spring Framework Certification" Kjetil Ødegaard 2009-06-08T11:17:12Z 2009-06-08T11:17:12Z You don't HAVE to take the course, if you have Spring experience you may be allowed to take the exam as a &quot;grandfathered candidate&quot;. <a href="http://www.springsource.com/node/761" rel="nofollow">springsource.com/node/761</a> http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61571#61571 Comment by Kjetil Ødegaard on Is .Net/Mono or Java the better choice for cross-platform development? Kjetil Ødegaard 2009-03-09T11:27:51Z 2009-03-09T11:27:51Z @Rich B: if a client doesn't want MS products, .NET is clearly the wrong choice. http://stackoverflow.com/questions/623607/dynamic-sql-java-library/623728#623728 Comment by Kjetil Ødegaard on Dynamic SQL Java library Kjetil Ødegaard 2009-03-08T19:44:06Z 2009-03-08T19:44:06Z If you pass &quot;?&quot; as the criteria values, Squiggle should generate a query string you can pass to PreparedStatement and do normal binding on. That's my theory, anyway, I haven't actually tried it :-)