User Nils-Petter Nilsen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T10:17:49Zhttp://stackoverflow.com/feeds/user/35014http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/374043/with-multi-module-maven-projects-is-it-possible-to-make-my-root-pom-packaged-p2With multi-module Maven projects, is it possible to make my root (pom-packaged) project available in Eclipse?Nils-Petter Nilsen2008-12-17T09:08:27Z2009-11-16T22:46:42Z
<p>We have a fairly large group of Maven2 projects, with a root POM file listing 10+ modules and a lot of properties used by the modules (dependency version numbers, plugin configuration, common dependencies, etc). Some of the modules are, like the root project, parents to other sets of modules. </p>
<p>To clarify, the root project and said parent projects are set to pom packaging (as opposed to e.g. jar).</p>
<p>Because there are many dependencies between the different projects, I like to use mvn eclipse:eclipse on the root project, which enables me to debug/step into any project at any time. </p>
<p>However, with this approach, the root POM itself, and all other pom-packaged projects, are unavailable in Eclipse. So, if I want to edit them, I have to open them some other way. This is becoming a bit of a hassle. </p>
<p>So, my question is: is it possible to somehow make pom-packaged projects available in Eclipse? If not, do you have any tips that could make my work with these projects easier? </p>
<p>For the record, I'm currently using MyEclipse 7.0.</p>
http://stackoverflow.com/questions/1307517/automating-jboss-deployment-in-eclipse/1322424#13224241Answer by Nils-Petter Nilsen for Automating JBoss deployment in Eclipse?Nils-Petter Nilsen2009-08-24T13:29:58Z2009-08-24T13:29:58Z<p><a href="http://www.jboss.org/tools" rel="nofollow">JBoss Tools</a> has kept me happy for a few months now. It was a bit tricky to get it up and running, but it's a real time saver once you've nailed the configuration.</p>
http://stackoverflow.com/questions/1306166/how-can-i-access-private-class-members-in-java/1306202#13062022Answer by Nils-Petter Nilsen for How can I access private class members in Java?Nils-Petter Nilsen2009-08-20T13:30:13Z2009-08-20T13:30:13Z<p>Some methods I've used in the past:</p>
<ul>
<li>Make _ix protected, create a subclass where you implement a setter</li>
<li>Make a constructor taking the value for _ix as a parameter</li>
<li>Use reflection</li>
</ul>
http://stackoverflow.com/questions/284753/nuggets-of-wisdom/295388#29538817Answer by Nils-Petter Nilsen for Nuggets of wisdom?Nils-Petter Nilsen2008-11-17T11:47:18Z2009-07-29T15:03:03Z<blockquote>
<p>Trying is the first step towards failure<br />
--Homer Simpson</p>
</blockquote>
<p>This has been proven almost every time we try out a new technology at work.</p>
http://stackoverflow.com/questions/890041/why-does-query-caching-with-hibernate-make-the-query-ten-times-slower3Why does query caching with Hibernate make the query ten times slower?Nils-Petter Nilsen2009-05-20T20:24:35Z2009-07-10T07:20:28Z
<p>I'm currently experimenting with EJB3 as a prestudy for a major project at work. One of the things I'm looking into is query caching. </p>
<p>I've made a very simple domain model with JPA annotations, a @Local business interface and a @Stateless implementation in an EJB-JAR, deployed in an EAR together with a very simple webapp to do some basic testing. The EAR is deployed in JBoss 5.0.1 default config with no modifications. This was very straighforward, and worked as expected.</p>
<p>However, my latest test involved query caching, and I got some strange results:</p>
<ul>
<li>I have a domain class that only maps an ID and a String value, and have created about 10000 rows in that particular table</li>
<li>In the business bean, there's a very simple query, SELECT m FROM MyClass m</li>
<li>With no cache, this executes in about 400ms on average</li>
<li>With query cache enabled (through hints on the query), the first execution of course takes a little longer, about 1200ms. The next executions take 3500ms on average!</li>
</ul>
<p>This puzzled me, so I enabled Hibernate's show_sql to look at the log. Uncached, and on the first execution with cache enabled, there is one SELECT logged, as expected. When I should get cache hits, Hibernate logs one SELECT for each row in the database table. </p>
<p>That would certainly explain the slow execution time, but can anyone tell me why this happens?</p>
http://stackoverflow.com/questions/374043/with-multi-module-maven-projects-is-it-possible-to-make-my-root-pom-packaged-p/1085680#10856802Answer by Nils-Petter Nilsen for With multi-module Maven projects, is it possible to make my root (pom-packaged) project available in Eclipse?Nils-Petter Nilsen2009-07-06T06:34:16Z2009-07-06T06:34:16Z<p>I tried this again, with Galileo and the latest version of m2eclipse. It is now possible to import Maven projects directly (without mvn eclipse:eclipse), and it turns out that the root POM is also imported as a project, which is excactly what I wanted.</p>
http://stackoverflow.com/questions/1065474/java-public-static-main/1065490#10654901Answer by Nils-Petter Nilsen for Java public static main()Nils-Petter Nilsen2009-06-30T19:20:40Z2009-06-30T19:20:40Z<p>The brackets mean that it's an array of Strings. And there can be parameters, e.g. from the command line when your start your application.</p>
http://stackoverflow.com/questions/1065373/change-java-package-name-in-a-svn-branch/1065417#10654170Answer by Nils-Petter Nilsen for Change Java package name in a SVN branchNils-Petter Nilsen2009-06-30T19:07:25Z2009-06-30T19:07:25Z<p>I can't see any really good solutions, but would it be an option to just create subclasses under the new package name? </p>
<p>Then the patches could be applied to the super classes, and the sub classes would never actually contain anything.</p>
http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889958#8899580Answer by Nils-Petter Nilsen for What coding mistakes are a telltale giveaway of an inexperienced programmer?Nils-Petter Nilsen2009-05-20T20:05:00Z2009-05-20T20:05:00Z<p>I came across this one a while ago, in some code I inherited from a programmer that simply wasn't able to gather experience, even after several years in the job:</p>
<pre><code>String dir = "c:/foo";
for (int i = 0 ; i < 2 ; i++) {
//Do stuff in folder
dir = "c:\bar";
}
</code></pre>
<p>I've also met 2nd year programming students that simply couldn't grasp the concept of for loops. There's a giveaway...</p>
http://stackoverflow.com/questions/268129/whats-the-best-way-to-share-business-object-instances-between-java-web-apps-usin8What's the best way to share business object instances between Java web apps using JBoss and Spring?Nils-Petter Nilsen2008-11-06T09:54:26Z2009-05-11T16:13:56Z
<p>We currently have a web application loading a Spring application context which instantiates a stack of business objects, DAO objects and Hibernate. We would like to share this stack with another web application, to avoid having multiple instances of the same objects.</p>
<p>We have looked into several approaches; exposing the objects using JMX or JNDI, or using EJB3. </p>
<p>The different approaches all have their issues, and we are looking for a lightweight method. </p>
<p>Any suggestions on how to solve this?</p>
<p>Edit: I have received comments requesting me to elaborate a bit, so here goes:</p>
<p>The main problem we want to solve is that we want to have only one instance of Hibernate. This is due to problems with invalidation of Hibernate's 2nd level cache when running several client applications working with the same datasource. Also, the business/DAO/Hibernate stack is growing rather large, so not duplicating it just makes more sense.</p>
<p>First, we tried to look at how the business layer alone could be exposed to other web apps, and Spring offers JMX wrapping at the price of a tiny amount of XML. However, we were unable to bind the JMX entities to the JNDI tree, so we couldn't lookup the objects from the web apps.</p>
<p>Then we tried binding the business layer directly to JNDI. Although Spring didn't offer any method for this, using JNDITemplate to bind them was also trivial. But this led to several new problems: 1) Security manager denies access to RMI classloader, so the client failed once we tried to invoke methods on the JNDI resource. 2) Once the security issues were resolved, JBoss threw IllegalArgumentException: object is not an instance of declaring class. A bit of reading reveals that we need stub implementations for the JNDI resources, but this seems like a lot of hassle (perhaps Spring can help us?)</p>
<p>We haven't looked too much into EJB yet, but after the first two tries I'm wondering if what we're trying to achieve is at all possible. </p>
<p>To sum up what we're trying to achieve: One JBoss instance, several web apps utilizing one stack of business objects on top of DAO layer and Hibernate.</p>
<p>Best regards,</p>
<p>Nils</p>
http://stackoverflow.com/questions/642093/hibernate-query-runs-slow-in-the-system-but-fast-when-run-directly/647980#6479800Answer by Nils-Petter Nilsen for Hibernate Query runs slow in the system, but fast when run directly.Nils-Petter Nilsen2009-03-15T15:24:28Z2009-03-15T15:24:28Z<p>In my experience, the main problem with complex queries in Hibernate is not the query itself, but rather the creation of all the objects representing the result set.</p>
<p>In my case at work, we had a very large domain model, with lots of couplings, so that even fetching one single object from the database was quite expensive because that object was linked to other objects, which in turn were linked to other objects and so on.</p>
<p>For us, more use of lazy loading solved at least parts of the problem. Smart caching helped even more. What I learned was that in the future, I'll allow more loose coupling between domain classes.</p>
http://stackoverflow.com/questions/629239/books-on-design-patterns-and-or-algorithms/629246#6292461Answer by Nils-Petter Nilsen for Books on Design Patterns and/or Algorithms?Nils-Petter Nilsen2009-03-10T07:43:17Z2009-03-10T07:43:17Z<p>I really like the Head First series, and their book on design patterns is no exception:</p>
<p><a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a></p>
http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux/625865#6258651Answer by Nils-Petter Nilsen for Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T11:22:38Z2009-03-09T11:22:38Z<p>Mystery partially solved:</p>
<p>MethodUtils.getMatchingAccessibleMethod() apparently works differently on Linux and Windows. </p>
<p>By using MethodUtils.getAccessibleMethod() instead, it works. Why, I don't know, but I'm guessing that MethodUtils somehow misinterprets the parameter list when figuring out what signature the Method should have.</p>
<p>I'd like to spend more time investigating this, but as always there are things to do and projects to deliver, so I just have to accept that getAccessibleMethod works, and move on :-)</p>
<p>Thanks to everyone for their input!</p>
http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux2Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T09:18:03Z2009-03-09T11:22:38Z
<p>While setting up Hudson for continous integration testing (on a JeOS server), I've come across some strange behaviour I'm hoping the fine people at SO can explain to me.</p>
<p>Our unit tests depend heavily on the use of domain objects, with lots of properties that must be set (due to null constraints in the database). In order to keep our tests readable, we have created a class InstantiationUtils that can instantiate an object and set a series of properties through reflection:</p>
<pre><code>public static <T> T newInstance(final Class<T> type, final KeyValuePair<?>... propertyValues) {
return ReflectionUtils.reflectionOperation(new ReflectionOperation<T>() {
@Override
public T perform() throws Exception {
T object = type.newInstance();
for (KeyValuePair<?> propertyValue : propertyValues) {
String propertyName = propertyValue.getKey();
Object value = propertyValue.getValue();
String setterName = "set" + StringUtils.capitalize(propertyName);
ReflectionUtils.invoke(object, setterName, value);
}
return object;
}
});
}
public static void invoke(final Object target, final String methodName, final Object... params) {
List<Class<?>> parameterTypes = ListUtils.map(asList(params), "class");
Class<?> targetClass = target.getClass();
Method method = MethodUtils.getMatchingAccessibleMethod(targetClass, methodName,
parameterTypes.toArray(new Class<?>[] {}));
invoke(target, method, params);
}
public class Foo {
private String foo;
public void setFoo(final String foo) {
this.foo = foo;
}
}
public class Bar extends Foo {
private String bar;
public void setBar(final String bar) {
this.bar = bar;
}
}
</code></pre>
<p>The person who wrote this code unfortunately no longer works for us, but as far as I can see, there is nothing wrong with it. Which is also true for Windows - we use InstantiationUtils throughout our unit tests without any problems.</p>
<p>Linux, however, is different. It turns out that in Linux, the newInstance() method only works for direct (i.e. not inherited) members of the class we want to instantiate.</p>
<p>InstantiationUtils.newInstance(Bar.class, "bar", "12345"); will work, while InstantiationUtils.newInstance(Bar.class, "foo", "98765"); will fail on Linux, with the following exception: </p>
<blockquote>
<p>xxx.xxx.xxx.ReflectionUtils$ReflectionException: java.lang.NoSuchMethodException: Property 'foo' has no setter method</p>
</blockquote>
<p>On Windows, both calls will work (I know the newInstance signature doesn't match; we have several overloaded newInstance() methods that convert the parameters to KeyValuePairs).</p>
<p>I had a hard time accepting that inherited public methods are treated differently, so I have tested this in all ways I can think of. And it always ends up with the conclusion that under Linux, at least with the above usage of Reflection, we can't access public inherited methods.</p>
<p>On Windows, I use Sun's JRE 1.6.0.11, in Linux it's also Sun, but version 1.6.0.7.</p>
<p>Can anyone confirm if this is correct? Or is the Reflection usage somehow flawed?</p>
http://stackoverflow.com/questions/622246/what-does-your-java-development-environment-consist-of/622275#6222752Answer by Nils-Petter Nilsen for What does your Java development environment consist of?Nils-Petter Nilsen2009-03-07T18:34:22Z2009-03-07T18:34:22Z<ul>
<li>MyEclipse - lots of plugins, the most important of them are Spring IDE, FileSync and Subversive. </li>
<li>Maven for building</li>
<li>Archiva as proxy for Maven artifacts, and also to deploy my own artifacts </li>
<li>Hudson for continous integration </li>
<li>Subversion for source control</li>
<li>MediaWiki for archiving all sorts of knowledge</li>
<li>Libraries I use in every project: Apache Commons Utilities, Google Collections and JUnit</li>
<li>Spring, Hibernate and MySQL for many projects</li>
<li>MySQL GUI Tools</li>
<li>JBoss for large-scale testing, Jetty for small jobs</li>
<li>Books: Effective Java, Spring in Action</li>
</ul>
http://stackoverflow.com/questions/621633/repeated-logging-in-log-4j-in-java/621652#6216523Answer by Nils-Petter Nilsen for repeated logging in log 4j in javaNils-Petter Nilsen2009-03-07T10:37:32Z2009-03-07T10:37:32Z<p>I've experienced similar behavior, and it turned out that Log4J was configured more than once; using the BasicConfigurator, but also with a log4j.xml file I had forgotten about. Could it be that there's an additional Log4J configuration somewhere on the classpath?</p>
http://stackoverflow.com/questions/615843/becoming-a-better-developer-architect/615873#6158735Answer by Nils-Petter Nilsen for Becoming a better Developer/ArchitectNils-Petter Nilsen2009-03-05T18:02:29Z2009-03-05T18:02:29Z<p>I feel that I have grown as a programmer over the last couple of years, and of course lots of coding is important. But I think what really mattered was that I got to work with other really good programmers. Especially pair programming with better programmers than myself has taught me a lot.</p>
<p>Even better, I've been allowed to work on new, relatively large projects where we've had enough time to really spend time thinking about how we can do it the best way possible.</p>
<p>So, I think that coding is still a good way to become a better programmer, but doing it in a team with other very good programmers has been more valuable, at least for me.</p>
http://stackoverflow.com/questions/364523/is-there-a-general-backend-library-for-java-reflection/365633#3656332Answer by Nils-Petter Nilsen for Is there a general "backend" library for Java reflectionNils-Petter Nilsen2008-12-13T19:59:36Z2008-12-13T19:59:36Z<p>Have a look at <a href="http://commons.apache.org/beanutils/" rel="nofollow">Apache Commons BeanUtils</a></p>
http://stackoverflow.com/questions/355262/how-long-does-it-take-for-you-to-determine-if-someone-is-going-to-be-a-good-devel/355383#35538311Answer by Nils-Petter Nilsen for How long does it take for you to determine if someone is going to be a good developer?Nils-Petter Nilsen2008-12-10T07:56:11Z2008-12-10T07:56:11Z<p>I've seen both good and bad developers in my workplace over the last few years. I can usually spot the bad ones within a few weeks. Of course, one must allow people to settle in and learn our specific domain. One must also accept that even for the good ones, reaching max. productivity will take time. </p>
<p>But there is one signal I usually spot very early: if they sit by themselves, apparently working, but getting nowhere, and don't ask for help, then I know we're in trouble. We've had a few of those. No one expects a new employee to be self-driven, but if they can't even ask for help, then they're doomed in my opinion.</p>
<p>In one case, we actually forced help upon the person after identifying the problem, and when even that didn't work, we were at a loss. Luckily, the individual decided to leave after a couple of months.</p>
http://stackoverflow.com/questions/305436/jpa-hibernate-in-java-se-6-best-practices-for-data-access/305534#3055343Answer by Nils-Petter Nilsen for JPA/Hibernate in Java SE 6, Best Practices for data accessNils-Petter Nilsen2008-11-20T14:55:20Z2008-11-20T14:55:20Z<p>I'm not sure what's considered the best approach to this, but at my workplace, we have based most of our Hibernate interaction on these articles: </p>
<p><a href="http://www.onjava.com/pub/a/onjava/2006/09/13/dont-let-hibernate-steal-your-identity.html" rel="nofollow">Don't let Hibernate steal your identity</a>
and <a href="http://www.hibernate.org/328.html" rel="nofollow">Generic Data Access Objects</a></p>
<p>They show you how to make your mapped classes in a smart way, and how to implement a generic DAO that can be reused for any persistent class. This has worked out nicely for us.</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301821#30182137Answer by Nils-Petter Nilsen for Why didn't unit testing work out for your project?Nils-Petter Nilsen2008-11-19T13:03:20Z2008-11-19T13:03:20Z<p>Tightly coupled code made it impossible to test one unit without testing the entire system - which in turn depended on other systems.</p>
http://stackoverflow.com/questions/301624/spring-beanisabstractexception/301794#3017941Answer by Nils-Petter Nilsen for spring BeanIsAbstractExceptionNils-Petter Nilsen2008-11-19T12:49:10Z2008-11-19T12:55:57Z<pre><code>map.put(beansName[mnCnt], factory.getBean(beansName[mnCnt]));
</code></pre>
<p>There's your problem, isn't it? By calling getBean with the name of the abstract bean, you try to instantiate it, which will generate an exception.</p>
http://stackoverflow.com/questions/268129/whats-the-best-way-to-share-business-object-instances-between-java-web-apps-usin/280278#2802781Answer by Nils-Petter Nilsen for What's the best way to share business object instances between Java web apps using JBoss and Spring?Nils-Petter Nilsen2008-11-11T07:50:47Z2008-11-11T07:50:47Z<p>Thank you for your answers so far. We're still not quite there, but we have tried a few things now and see things more clearly. Here's a short update:</p>
<p>The solution which appears to be the most viable is EJB. However, this will require some amount of changes in our code, so we're not going to fully implement that solution right now. I'm almost surprised that we haven't been able to find some Spring feature to help us out here.</p>
<p>We have also tried the JNDI route, which ends with the need for stubs for all shared interfaces. This feels like a lot of hassle, considering that everything is on the same server anyway.</p>
<p>Yesterday, we had a small break through with JMX. Although JMX is definately not meant for this kind of use, we have proven that it can be done - with no code changes and a minimal amount of XML (a big Thank You to Spring for MBeanExporter and MBeanProxyFactoryBean). The major drawbacks to this method are performance and the fact that our domain classes must be shared through JBoss' server/lib folder. I.e., we have to remove some dependencies from our WARs and move them to server/lib, else we get ClassCastException when the business layer returns objects from our own domain model. I fully understand why this happens, but it is not ideal for what we're trying to achieve.</p>
<p>I thought it was time for a little update, because what appears to be the best solution will take some time to implement. I'll post our findings here once we've done that job.</p>
http://stackoverflow.com/questions/1448046/career-choice-in-jee-are-ejbs-standard/1448066#1448066Comment by Nils-Petter Nilsen on Career Choice in JEE, are EJBs standard?Nils-Petter Nilsen2009-09-19T07:47:12Z2009-09-19T07:47:12ZActually, at my workplace, we just turned in the opposite direction, replacing Spring/Hibernate with EJB3 and SEAM. But I agree that most employers seem prefer Spring.http://stackoverflow.com/questions/890041/why-does-query-caching-with-hibernate-make-the-query-ten-times-slower/890062#890062Comment by Nils-Petter Nilsen on Why does query caching with Hibernate make the query ten times slower?Nils-Petter Nilsen2009-05-20T20:40:23Z2009-05-20T20:40:23ZGreat, I'll try enabling the 2nd level cache also. I love this place :-)http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/889958#889958Comment by Nils-Petter Nilsen on What coding mistakes are a telltale giveaway of an inexperienced programmer?Nils-Petter Nilsen2009-05-20T20:31:45Z2009-05-20T20:31:45ZValid point, but it was used exclusively inside the loop as source folder to copy files from foo and bar to one target folder. I'd make a copyFrom(String dir) method, or something to that effect, and call it twice with foo and bar as parameters.http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux/625590#625590Comment by Nils-Petter Nilsen on Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T10:29:10Z2009-03-09T10:29:10ZThe locales are actually different. But I tested the output of capitalize(), and it appears to be correct.http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux/625549#625549Comment by Nils-Petter Nilsen on Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T10:24:09Z2009-03-09T10:24:09ZSame behaviour with 1.6.0.12, still fails on Linux.http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux/625615#625615Comment by Nils-Petter Nilsen on Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T10:22:14Z2009-03-09T10:22:14ZAll good points :-) But setFoo() is not overloaded, and all classes in the hierarchy are public.http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux/625549#625549Comment by Nils-Petter Nilsen on Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T10:15:24Z2009-03-09T10:15:24ZWindows is Sun 1.6.0.11, Linux is Sun 1.6.0.7. I'll try upgrading both to 1.6.0.12 and see what happens.http://stackoverflow.com/questions/625516/is-java-reflection-on-inherited-methods-different-in-windows-and-linux/625546#625546Comment by Nils-Petter Nilsen on Is Java Reflection on Inherited Methods Different in Windows and Linux?Nils-Petter Nilsen2009-03-09T09:40:58Z2009-03-09T09:40:58ZI have thought about that, but usually when there's a SecurityManager issue, I get a very specific exception stating just that. In this case, it's NoSuchMethodException, and no sign of SecurityManager in the stack trace.http://stackoverflow.com/questions/355262/how-long-does-it-take-for-you-to-determine-if-someone-is-going-to-be-a-good-devel/355383#355383Comment by Nils-Petter Nilsen on How long does it take for you to determine if someone is going to be a good developer?Nils-Petter Nilsen2008-12-10T10:16:55Z2008-12-10T10:16:55ZI agree, but you must know when it's time to ask for help. In the case I mentioned, the person was assigned to a research task involving only very basic programming not related to existing code. Still, he sat there for several weeks without getting anywhere and without asking.http://stackoverflow.com/questions/268129/whats-the-best-way-to-share-business-object-instances-between-java-web-apps-usin/269168#269168Comment by Nils-Petter Nilsen on What's the best way to share business object instances between Java web apps using JBoss and Spring?Nils-Petter Nilsen2008-11-07T07:36:48Z2008-11-07T07:36:48ZYes, everything is deployed to the same server. This looks quite interesting, I'll give EJB a shot today. My point about Spring is that it offers to wrap beans for e.g. JMX without any code, but apparently not for EJB. Anyway, I look at the EJB approach today.http://stackoverflow.com/questions/268129/whats-the-best-way-to-share-business-object-instances-between-java-web-apps-usinComment by Nils-Petter Nilsen on What's the best way to share business object instances between Java web apps using JBoss and Spring?Nils-Petter Nilsen2008-11-06T12:35:20Z2008-11-06T12:35:20ZIt was difficult to say it all in 300 characters, so I edited the question to add more details :-)