User jbandi - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T06:45:09Zhttp://stackoverflow.com/feeds/user/32749http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316609/why-is-the-webbeans-jsr-299-conversation-context-tied-to-jsf0Why is the WebBeans (JSR-299) Conversation Context tied to JSF?jbandi2008-11-25T07:44:49Z2009-11-16T13:41:21Z
<p>I am reading through the Public Review Draft of the <a href="http://docs.jboss.org/webbeans/spec/PDR/html/" rel="nofollow">Web Beans specification</a> (JSR-299) and I am wondering why it is so 'tightly coupled' to JSF?</p>
<p>Especially the Conversation Context seems only be specified for JSF.</p>
<p>I understand, that it is a goal of WebBeans to integrate JSF and EJB3. But would it not make sense to specify the concept of conversations on a more general level (maybe for Servlets in general and not for a specific web framework)?</p>
<p>Is there any technical reason for this? I think it can hardly be, because Seam (which is some Kind of WebBeans-Prototype) does also support Wicket and provides the concept of conversations.</p>
<p>I think it would be helpful to have a Conversation Scope on Servlet level (injecting of conversation-scoped beans into servlets). In my understanding, this is not the case with the ciurrent specification (see chapter 8.5.4). Or am I misinterpreting something here ...</p>
http://stackoverflow.com/questions/307895/what-is-the-most-mature-bdd-framework-for-net/1574811#15748113Answer by jbandi for What is the most mature BDD Framework for .NET?jbandi2009-10-15T20:23:59Z2009-10-15T20:23:59Z<p>Check out <a href="http://www.specflow.org" rel="nofollow">SpecFlow</a>.</p>
<p>It is a tool inspired by Cucumber that aims at providing a pragmatic and frictionless approach to Acceptance Test Driven Development and Behavior Driven Development for .NET projects today.</p>
<p>VisualStudio integration seems especially promising.</p>
http://stackoverflow.com/questions/594190/is-the-synchronized-keyword-in-a-classic-enterprise-application-suspicious4Is the 'synchronized' keyword in a classic enterprise application suspicious?jbandi2009-02-27T10:10:14Z2009-09-27T12:33:29Z
<p>I am talking about classic enterprise applications. Typically hosted in some kind of application-server or container. Nothing fancy, just entities, services, Presentation/UI and relational storage.</p>
<p>Whenever I see the <code>synchronized</code> keyword (either on methods or for blocks) in such an application I get very suspicious.
In my opinion this is either a sign for not understanding basic architectural concepts (for instance that a domain model is not shared between several clients) or even worse a sign that the architecture is actually very botched.</p>
<p>Do you share my mindset here? Or am I completely off track?
Do you have use cases where synchronization is actually necessary in a classic enterprise application?</p>
http://stackoverflow.com/questions/495314/automatically-activate-parent-plugin-in-maven/1292957#12929570Answer by jbandi for Automatically activate parent plugin in Mavenjbandi2009-08-18T10:03:17Z2009-08-18T10:03:17Z<p>I went with the following solution:</p>
<ul>
<li><p>Configure the plugin in the parent-pom in the pluginManagement-section. Bind the plugin to an existing phase.</p></li>
<li><p>Deactivate the plugin for the parent-pom by binding it to a nonexistent phase: Override the phase in the plugins-section.</p></li>
<li><p>Activate the plugin in each child-pom by including the plugin in the plugins section.</p></li>
</ul>
<p>Example parent-pom:</p>
<pre><code><defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<id>install-ejb-client</id>
<phase>install</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<file>${ejb-client-file}</file>
<groupId>${project.groupId}</groupId>
<artifactId>${project.artifactId}</artifactId>
<version>${project.version}</version>
<packaging>jar</packaging>
<classifier>client</classifier>
</configuration>
</execution>
</executions>
</plugin>
...
</plugins>
</pluginManagement>
<plugins>
<plugin>
<!-- deactivate the plugin for this project, only child-projects do generate ejb-clients -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<id>install-ejb-client</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
...
</plugins>
</build>
</code></pre>
<p>Example child-pom:</p>
<pre><code><build>
<plugins>
...
<plugin>
<!-- Install the generated client-jar. Property 'ejb-client-file' has to be set! Plugin configuration is in the parent pom -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
</plugin>
...
</plugins>
</build>
</code></pre>
http://stackoverflow.com/questions/729545/why-is-there-no-need-for-maven-in-net8Why is there no need for Maven in .NET?jbandi2009-04-08T11:17:33Z2009-05-18T15:00:47Z
<p>I have the impression, that in the .NET-world, there is no real need for a Maven-like tool.</p>
<p>I am aware that there is <a href="http://byldan.codeplex.com/" rel="nofollow">Byldan</a> and NMaven (is it still alive?), but I have not yet seen a real-world project that uses them.</p>
<p>Also in most .NET projects I have worked on, there never was voiced an need for a Maven-like tool. The problems Maven maven is addressing (automatic dependency-resolution, conventions based build structure ...) seem not to be so important in .NET.</p>
<p>Is my perception correct? </p>
<p>Why is this the case?</p>
<p>What are people really using in .NET? No automatic dependency resolution at all? </p>
<p>Are they writing their own build tools?</p>
<p>Is anybody using Maven itself, to manage their .NET projects? Is this
a good choice?</p>
<p>What are your experiences?</p>
http://stackoverflow.com/questions/818074/transactions-for-read-only-db-access0Transactions for read-only DB access?jbandi2009-05-03T21:42:00Z2009-05-03T22:32:12Z
<p>There seem to be very different opinions about using transactions for reading from a database.</p>
<p>Quote from the DeveloperWorks article <a href="http://www.ibm.com/developerworks/java/library/j-ts2.html?ca=drs-" rel="nofollow">Transaction strategies: Models and strategies overview</a>:</p>
<blockquote>
<p>Why would you need a transaction if
you are only reading data? The answer
is that you don't. Starting a
transaction to perform a read-only
operation adds to the overhead of the
processing thread and can cause shared
read locks on the database (depending
on what type of database you are using
and what the isolation level is set
to).</p>
</blockquote>
<p>As a contrary opinion there is the following quote from Hibernate documentation <a href="https://www.hibernate.org/403.html" rel="nofollow">Non-transactional data access and the auto-commit mode</a></p>
<blockquote>
<p>Our recommendation is to not use the
autocommit mode in an application, and
to apply read-only transactions only
when there is an obvious performance
benefit or when future code changes
are highly unlikely. Always prefer
regular ACID transactions to group
your data-access operations,
regardless of whether you read or
write data.</p>
</blockquote>
<p>There is also a similar debate on the EclipseLink mailing list <a href="http://dev.eclipse.org/newslists/news.eclipse.rt.eclipselink/msg00087.html" rel="nofollow">here</a>.</p>
<p>So where lies the truth? Are transactions for reading best-practice or not? If both are viable solutions, what are the criteria for using transactions?</p>
<p>As far as I can see it only make a difference if the isolation level is higher than 'read committed'. Is this correct?</p>
<p>What are the experiences and recommendations?</p>
http://stackoverflow.com/questions/392781/maven-for-net/729503#7295031Answer by jbandi for maven for .netjbandi2009-04-08T11:07:02Z2009-04-08T11:07:02Z<p>See also this thread:</p>
<p><a href="http://stackoverflow.com/questions/652583/is-there-a-maven-alternative-or-port-for-the-net-world">Is there a Maven Alternative or port for the .NET world?</a></p>
<p>There is <a href="http://byldan.codeplex.com/" rel="nofollow">Byldan</a>, but the project seems quite young.</p>
http://stackoverflow.com/questions/594079/is-it-possible-to-use-hibernate-as-glassfishs-persistence-provider/594114#5941140Answer by jbandi for Is it possible to use hibernate as Glassfish's persistence provider?jbandi2009-02-27T09:41:20Z2009-02-27T09:41:20Z<p>Yes, that's a common scenario. Just deploy Hibernate (and all its dependencies) either globally into Glassfish or as part of your application.
Then implement your application using Hibernate as a library. </p>
<p>The next question you have to consider is whether you want to use JPA, and Hibernate as JPA provider or if you want to use Hibernate plain.</p>
<p>Another question then if you want to use EJBs and Entity Beans. If yes, I would recomend using JPA.</p>
<p>If you are not using EJB Entity Beans, you can use either JPA or plain Hibernate for persisting your POJOs.</p>
http://stackoverflow.com/questions/183629/what-is-the-best-practice-for-jpa-hibernate-entity-classes-and-synchronization/560870#5608700Answer by jbandi for What is the best practice for JPA/Hibernate entity classes and synchronization?jbandi2009-02-18T12:34:36Z2009-02-18T12:34:36Z<p>JPA/Hibernate entities are POJOs. Hibernate and any JPA-Provider does not change runtime sematics.</p>
<p>So if you would have concurrency issues with a simple POJO, you will also have them with your entity!</p>
<p>In all the Systems I have seen the domain model is not threadsave, entity instances are not accessed by several threads.</p>
<p>However you can have several instances of the same entities concurrently. In this case synchronization is done over the DB. The patterns here are Optimistic and Pessimistic Locking. Hibernate and JPA can help you with the realization of these patterns.</p>
http://stackoverflow.com/questions/413131/an-alternative-to-hibernate-or-toplink/560814#5608141Answer by jbandi for An alternative to Hibernate or TopLink?jbandi2009-02-18T12:16:05Z2009-02-18T12:16:05Z<p>I did a short compilation of ORM Solutions for Java here:</p>
<p><a href="http://www.jonasbandi.net/wiki/index.php/ORM_Solutions_for_Java" rel="nofollow">http://www.jonasbandi.net/wiki/index.php/ORM_Solutions_for_Java</a></p>
<p>This list is by no means complete, but it contains the ORM-frameworks I would consider when starting a new project today. </p>
http://stackoverflow.com/questions/505387/mapping-a-bidirectional-list-with-hibernate0Mapping a bidirectional list with Hibernatejbandi2009-02-02T23:13:40Z2009-02-07T11:42:06Z
<p>I don't understand the behavior of Hibernate when mapping a bidirectional list. The SQL statements that Hibernate produces seem not optimal to me. Can somebody enlighten me?</p>
<p>The scenario is the following: I have a one-to-many parent-child relationship. I map this relationship with a bidirectional list.</p>
<p>According to the <a href="http://www.hibernate.org/hib_docs/annotations/reference/en/html/entity.html#entity-hibspec-collection-extratype" rel="nofollow">Hibernate Annotation Reference Guide</a> (Chapter 2.4.6.2.3. Bidirectional association with indexed collections) the mapping should look like this:</p>
<pre><code>@Entity
public class Parent {
@Id @GeneratedValue private long id;
@Version private int version;
private String name;
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "parent_id", nullable=false)
@org.hibernate.annotations.IndexColumn(name = "parent_index")
List<Child> children = new ArrayList<Child>();
...
@Entity
public class Child {
@Id @GeneratedValue private Long id;
@Version private int version;
private String name;
@ManyToOne
@JoinColumn(name = "parent_id", updatable = false, insertable = false, nullable=false)
private Parent parent;
...
</code></pre>
<p>But in this case Hibernate produces three SQL statements when persisting a parent with one child:</p>
<pre><code>Hibernate: insert into Parent (name, version, id) values (?, ?, ?)
Hibernate: insert into Child (name, price, version, parent_id, parent_index, id) values (?, ?, ?, ?, ?, ?)
Hibernate: update Child set parent_id=?, parent_index=? where id=?
</code></pre>
<p>The third statement seems to be redundant, because <code>parent_id</code> and <code>parent_index</code> seem to be set already in the second statement.</p>
<p>When I change the mapping and repeat the attributes '<em>updatable = false, insertable = false</em>' to the declaration of the <em>@JoinColumn</em> in the Parent like this:</p>
<pre><code>@Entity
public class Parent {
@Id @GeneratedValue private long id;
@Version private int version;
private String name;
@OneToMany(cascade = CascadeType.ALL)
@JoinColumn(name = "parent_id", updatable = false, insertable = false, nullable=false)
@org.hibernate.annotations.IndexColumn(name = "parent_index")
List<Child> children = new ArrayList<Child>();
...
@Entity
public class Child {
@Id @GeneratedValue private Long id;
@Version private int version;
private String name;
@ManyToOne
@JoinColumn(name = "parent_id", updatable = false, insertable = false, nullable=false)
private Parent parent;
...
</code></pre>
<p>...then Hibernate seems to produce much more optimized SQL:</p>
<pre><code>Hibernate: insert into Parent (name, version, id) values (?, ?, ?)
Hibernate: insert into Child (name, price, version, parent_id, parent_index, id) values (?, ?, ?, ?, ?, ?)
</code></pre>
<p>The client code looks like this:</p>
<pre><code> EntityManagerFactory emf = Persistence.createEntityManagerFactory("test");
EntityManager em = emf.createEntityManager();
EntityTransaction tx = em.getTransaction();
tx.begin();
Parent newParent = new Parent();
newParent.setName("Parent1");
Child newChild = new Child();
newChild.setName("Child1");
newParent.getChildren().add(newChild);
newChild.setParent(newParent);
em.persist(newParent);
em.flush();
tx.commit();
</code></pre>
<p>I am using hibernate-entitymanager 3.4.0.GA.</p>
<p>What am I missing? Is the Hibernate Reference Guide not correct, or am I overlooking something?</p>
http://stackoverflow.com/questions/505387/mapping-a-bidirectional-list-with-hibernate/523635#5236350Answer by jbandi for Mapping a bidirectional list with Hibernatejbandi2009-02-07T11:42:06Z2009-02-07T11:42:06Z<p>Ok, I was not reading the Annotations Reference Guide thoroughly enough.</p>
<p>In Chapter <a href="http://www.hibernate.org/hib_docs/annotations/reference/en/html/entity.html#entity-mapping-association-collections" rel="nofollow">2.2.5.3.2.1</a> it is stated clearly:</p>
<p>To map a bidirectional one to many, with the one-to-many side as the owning side, you have to remove the mappedBy element and set the many to one @JoinColumn as insertable and updatable to false. <strong>This solution is obviously not optimized and will produce some additional UPDATE statements</strong>.</p>
<p>It probably would not hurt to repeat this information in <a href="http://www.hibernate.org/hib_docs/annotations/reference/en/html/entity.html#entity-hibspec-collection-extratype" rel="nofollow">Chapter 2.4.6.2.3</a> .</p>
<p>Now the question remains: if I repeat the @JoinColumn attributes 'updatable = false' and 'insertable = false' on the Parent (see code in first post) the additional update statements seem not to get produced... is this a legitimate workaround? Or does this result in another problem?</p>
http://stackoverflow.com/questions/54017/what-are-the-best-java-podcasts/450417#4504172Answer by jbandi for What are the best Java Podcasts?jbandi2009-01-16T13:35:27Z2009-01-16T13:35:27Z<p>I would also add <a href="http://se-radio.net/" rel="nofollow">software engineering radio</a>.
This postcast is not explicitly java centric. But I think it rather java focussed...</p>
http://stackoverflow.com/questions/262004/what-are-sql-hints4What are "SQL-Hints"? jbandi2008-11-04T14:15:28Z2008-12-11T17:25:05Z
<p>I am an advocate of ORM-solutions and from time to time I am giving a workshop about Hibernate.</p>
<p>When talking about framework-generated SQL, people usually start talking about how they need to be able to use "hints", and this is supposedly not possible with ORM frameworks.</p>
<p>Usually something like: "We tried Hibernate. It looked promising in the beginning, but when we let it loose on our very very complex production database it broke down because we were not able to apply hints!".</p>
<p>But when asked for a concrete example, the memory of those people is suddenly not so clear any more ...</p>
<p>I usually feel intimidated, because the whole "hints"-topic sounds like voodoo to me...
So can anybody enlighten me? What is meant by SQL-hints or DB-Hints?</p>
<p>The only thing I know, that is somehow "hint-like" is SELECT ... FOR UPDATE. But this is supported by the Hibernate-API...</p>
http://stackoverflow.com/questions/262279/tools-best-practices-for-model-driven-development/320332#3203321Answer by jbandi for Tools (Best Practices?) for model driven development?jbandi2008-11-26T11:09:19Z2008-11-26T11:52:26Z<p>Disclaimer: I am a developer of business applications. The following view is certainly shaped by my experiences in trenches of enterprise IT. I am aware, that there are other domains of software development. Especially in industrial and/or embedded systems development the world might look different.</p>
<p><strong>I think MDSD is still too much tied to code generation.</strong></p>
<p>Code generation is only useful, when your code contains a lot of noise and/or is very repetitive. In other words, when your code can not mainly focus on the essential complexity, but is polluted with accidental complexity.</p>
<p>In my opinion the trend in current platforms and frameworks is exactly to remove accidental complexity and letting the application code focus on essential complexity.</p>
<p>So these new platforms/frameworks take a lot of the wind out of the sails of the MDSD movement.</p>
<p>DSLs (textual ones) are another trend that tries to enable the sole focus on essential complexity. While DSLs can be used as source for code generation, they are not primarily tied to code generation. DSLs (especially internal DSLs) basically let it open to be interpreted/executed at runtime. [runtime code generation is somewhere in between].</p>
<p>So even if DSLs are often mentioned together with MDSD, I think they are really an alternative to MDSD. And given the current hype, they also take the momentum out of the MDSD movement.</p>
<p>If you have reached the goal of ultimately removing accidental complexity out of your code (I know this is fictitious), then you have arrived at a textual model of your business problem. This cannot be further simplified!</p>
<p>Nice boxes and diagrams do not offer another simplification or elevation of the abstraction level! They may be good for visualization, but even that is questionable. A picture is not always the best representation to grasp complexity!</p>
<p>Further more, the current state of the tooling involved in MDSD adds another level of accidental complexity (think: synchronization, diffing/merging, refactoring ...) which basically nullifies the ultimate goal of simplification!</p>
<p>Look at the following ActiveRecord model, as an illustration of my theory:</p>
<pre><code>class Firm < ActiveRecord::Base
has_many :clients
has_one :account
belongs_to :conglomorate
end
</code></pre>
<p>I dont think that this can be any more simplified. Also any graphical representation with boxes and lines would be no simplification, and would not offer any more convenience (think about layouting, refactoring, searching, diffing ...).</p>
http://stackoverflow.com/questions/21091/do-you-use-mda-mdd-mdsd-any-kind-of-model-driven-approach-will-it-be-the-future/320316#3203161Answer by jbandi for Do you use MDA/MDD/MDSD, any kind of model-driven approach? Will it be the future?jbandi2008-11-26T11:04:35Z2008-11-26T11:04:35Z<p>Disclaimer: I am a developer of business applications. The following view is certainly shaped by my experiences in trenches of enterprise IT. I am aware, that there are other domains of software development. Especially in industrial and/or embedded systems development the world might look different.</p>
<p><strong>I think MDSD is still too much tied to code generation.</strong></p>
<p>Code generation is only useful, when your code contains a lot of noise and/or is very repetitive. In other words, when your code can not mainly focus on the essential complexity, but is polluted with accidental complexity.</p>
<p>In my opinion the trend in current platforms and frameworks is exactly to remove accidental complexity and letting the application code focus on essential complexity.</p>
<p>So these new platforms/frameworks take a lot of the wind out of the sails of the MDSD movement.</p>
<p>DSLs (textual ones) are another trend that tries to enable the sole focus on essential complexity. While DSLs can be used as source for code generation, they are not primarily tied to code generation. DSLs (especially internal DSLs) basically let it open to be interpreted/executed at runtime. [runtime code generation is somewhere in between].</p>
<p>So even if DSLs are often mentioned together with MDSD, I think they are really an alternative to MDSD. And given the current hype, they also take the momentum out of the MDSD movement.</p>
<p>If you have reached the goal of ultimately removing accidental complexity out of your code (I know this is fictitious), then you have arrived at a textual model of your business problem. This cannot be further simplified! </p>
<p>Nice boxes and diagrams do not offer another simplification or elevation of the abstraction level! They may be good for visualization, but even that is questionable. A picture is not always the best representation to grasp complexity!</p>
<p>Further more, the current state of the tooling involved in MDSD adds another level of accidental complexity (think: synchronization, diffing/merging, refactoring ...) which basically nullifies the ultimate goal of simplification! </p>
<p>Look at the following ActiveRecord model, as an illustration of my theory:</p>
<pre><code>class Firm < ActiveRecord::Base
has_many :clients
has_one :account
belongs_to :conglomorate
end
</code></pre>
<p>I dont think that this can be any more simplified. Also any graphical representation with boxes and lines would be no simplification, and would not offer any more convenience (think about layouting, refactoring, searching, diffing ...).</p>
http://stackoverflow.com/questions/264881/can-there-ever-be-a-silver-bullet-for-software-development/301827#3018270Answer by jbandi for Can there ever be a "silver bullet" for software development?jbandi2008-11-19T13:06:29Z2008-11-19T13:06:29Z<p>On InfoQ there is a very interesting summary of the OOPSLA Panel from 2007 discussing this topic:</p>
<p><a href="http://www.infoq.com/articles/No-Silver-Bullet-Summary" rel="nofollow">No Silver Bullet Reloaded Retrospective OOPSLA Panel Summary</a></p>
<p>There are a lot of gems in this discussion!</p>
<p>Especially cool is Martin Fowler disguised as a Werewolve and playing advocatus diaboli.</p>
<p>There is also a video from <a href="http://au.youtube.com/watch?v=Z-1X3duvryA" rel="nofollow">Fowler as Werewolve on YouTube</a></p>
<p>The sarcastic comments from Fowler alone are worth the read of the summary!</p>
<p>Reading the summary there seems to be a general consensus that there is really no silver bullet.</p>
<p>But this is also a dangerous consensus. As Bertrand Meyer (also in the summary) poses it:</p>
<blockquote>
<p>according to his experience, many
people, especially managers, rejected
new ideas of the ‘80s and ‘90s like
OOP, which actually were old ones,
because they did not believe the new
technology proposed to them would have
a serious impact on development,</p>
</blockquote>
<p>Using the insight, that there is no silver bullet as an excuse to stop trying to improve is certainly not the way to go!</p>
<p>I was a student of Bertrand Meyer at university, and he was a critic of Brooks paper, because he claimed that it was smothering innovation and the desire for improvement.</p>
http://stackoverflow.com/questions/249550/what-orm-frameworks-for-net-do-you-like-best/299006#2990064Answer by jbandi for What ORM frameworks for .NET Do You Like Best?jbandi2008-11-18T15:09:29Z2008-11-18T15:09:29Z<p>Since nobody mentioned it yet, I just want to throw in <a href="http://www.genom-e.com/" rel="nofollow">Genome</a>.</p>
<p>I have worked on a "big" successful project (multi-million, several years, >10 developers) for which we chose <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> as persistence solution.</p>
<p>Of course this has been some years ago, when ORM in the .NET-space was a relative new thing.</p>
<p>I was responsible for the data-access of the project, and <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> left a very neat impression.
Today I am working a lot with Hibernate in the Java-space, and from a developer standpoint <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> seemed way more intuitive (even though it has a different architectural philosophy and therefore cant be compared directly).</p>
<p><a href="http://www.genom-e.com/" rel="nofollow">Genome</a> is a commercial product.
<a href="http://www.genom-e.com/" rel="nofollow">Genome</a> has evolved a lot. Today it claims to be fully LINQ-compliant.
If I would be in a position of evaluating a ORM-solution for .NET I would definitely look at <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> again.</p>
<p>Another commercial product, not mentioned yet is <a href="http://www.telerik.com/products/orm.aspx" rel="nofollow">Telerik Open Access</a> (formerly Vanatec Open Access).</p>
http://stackoverflow.com/questions/132676/which-orm-for-net-would-you-recommend/298394#2983945Answer by jbandi for Which ORM for .net would you recommend?jbandi2008-11-18T10:38:10Z2008-11-18T10:38:10Z<p>Since nobody mentioned it yet, I just want to throw in <a href="http://www.genom-e.com/" rel="nofollow">Genome</a>.</p>
<p>I have worked on a "big" successful project (multi-million, several years, >10 developers) for which we chose <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> as persistence solution.</p>
<p>Of course this has been some years ago, when ORM in the .NET-space was a relative new thing.</p>
<p>I was responsible for the data-access of the project, and <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> left a very neat impression.
Today I am working a lot with Hibernate in the Java-space, and from a developer standpoint <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> seemed way more intuitive (even though it has a different architectural philosophy and therefore cant be compared directly).</p>
<p><a href="http://www.genom-e.com/" rel="nofollow">Genome</a> is a commercial product.
<a href="http://www.genom-e.com/" rel="nofollow">Genome</a> has evolved a lot. Today it claims to be fully LINQ-compliant.
If I would be in a position of evaluating a ORM-solution for .NET I would definitely look at <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> again.</p>
<p>Another commercial product, not mentioned yet is <a href="http://www.telerik.com/products/orm.aspx" rel="nofollow">Telerik Open Access</a> (formerly Vanatec Open Access).</p>
http://stackoverflow.com/questions/18655/why-do-we-need-entity-objects/264787#2647873Answer by jbandi for Why do we need entity objects?jbandi2008-11-05T10:25:54Z2008-11-05T10:25:54Z<p>We should also talk about the notion what entities really are.
When I read through this discussion, I get the impression that most people here are looking at entities in the sense of an <a href="http://en.wikipedia.org/wiki/Anemic_Domain_Model" rel="nofollow">Anemic Domain Model</a>.
A lot of people are considering the Anemic Domain Model as an antipattern!</p>
<p>There is value in rich domain models. That is what <a href="http://en.wikipedia.org/wiki/Domain_driven_design" rel="nofollow">Domain Driven Design</a> is all about.
I personally believe that OO is a way to conquer complexity. This means not only technical complexity (like data-access, ui-binding, security ...) <strong>but also complexity in the business domain</strong>!</p>
<p>If we can apply OO techniques to analyze, model, design <strong>and implement</strong> our business problems, this is a tremendous advantage for maintainability and extensibility of non-trivial applications!</p>
<p>There are differences between your entities and your tables. Entities should represent your model, tables just represent the data-aspect of your model!</p>
<p>It is true that data lives longer than apps, but consider <a href="http://laribee.com/files/fundamental-ddd.pdf" rel="nofollow">this quote</a> from <a href="http://codebetter.com/blogs/david_laribee/" rel="nofollow">David Laribee</a>: Models are forever ... data is a happy side effect.</p>
<p>Some more links on this topic:</p>
<ul>
<li><p><a href="http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-toolbox.html" rel="nofollow">Why Setters and Getters are evil</a> </p></li>
<li><p><a href="http://blog.jonasbandi.net/2008/08/no-setters-no-getters-return-of-oo.html" rel="nofollow">Return of pure OO</a></p></li>
<li><p><a href="http://puttingtheteaintoteam.blogspot.com/2008/10/is-that-pojo-or-nojo.html" rel="nofollow">POJO vs. NOJO</a></p></li>
<li><p><a href="http://codebetter.com/blogs/david_laribee/archive/2008/07/08/super-models-part-2-avoid-mutators.aspx" rel="nofollow">Super Models Part 2</a></p></li>
<li><p><a href="http://peripateticaxiom.blogspot.com/2008/06/tdd-mocks-and-design.html" rel="nofollow">TDD, Mocks and Design</a></p></li>
</ul>
http://stackoverflow.com/questions/250137/refactoring-static-method-static-field-for-testing6Refactoring static method / static field for Testingjbandi2008-10-30T13:15:55Z2008-10-30T15:36:50Z
<p>I have the following legacy code:</p>
<pre><code>public class MyLegacyClass
{
private static final String jndiName = "java:comp/env/jdbc/LegacyDataSource"
public static SomeLegacyClass doSomeLegacyStuff(SomeOtherLegacyClass legacyObj)
{
// do stuff using jndiName
}
}
</code></pre>
<p>This class is working in a J2EE-Container.</p>
<p>Now I would like to test the class outside of the container.</p>
<p>What is the best strategy?
Refactoring is basically allowed.</p>
<p>Accessing the LegacyDataSource is allowed (the test does not have to be a "pure" unit-test).</p>
<p>EDIT: Introducing additional runtime-frameworks is not allowed.</p>
http://stackoverflow.com/questions/495314/automatically-activate-parent-plugin-in-maven/554032#554032Comment by jbandi on Automatically activate parent plugin in Mavenjbandi2009-08-18T09:27:06Z2009-08-18T09:27:06ZUnfortunately this only works if the respective plugin offers "skip" as configuration.
Not all plugins do!http://stackoverflow.com/questions/594190/is-the-synchronized-keyword-in-a-classic-enterprise-application-suspicious/594218#594218Comment by jbandi on Is the 'synchronized' keyword in a classic enterprise application suspicious?jbandi2009-02-27T11:40:04Z2009-02-27T11:40:04ZI agree. I was talking about 'business logic'. My point is, that in modern platforms I usually don't see any reason to write 'technical code'. For me such 'technical code' is usually another sign, that people did not understand the technology and are reinventing the wheel.http://stackoverflow.com/questions/262279/tools-best-practices-for-model-driven-development/320332#320332Comment by jbandi on Tools (Best Practices?) for model driven development?jbandi2008-11-26T11:56:26Z2008-11-26T11:56:26Z@Roland You are completely right.
Just in my experience (custom enterprise applications) it is hardly a requirement to be platform agnostic.
I think portability/platform independence is often an overrated "ivory-tower feature" that is not needed in reality...http://stackoverflow.com/questions/262279/tools-best-practices-for-model-driven-development/263357#263357Comment by jbandi on Tools (Best Practices?) for model driven development?jbandi2008-11-26T11:08:50Z2008-11-26T11:08:50ZExactly! MDSD and DDD are something different! They are often lumped together.
On a high level they have similar goals, but the means to reaching those goals have completely different priorities!http://stackoverflow.com/questions/21091/do-you-use-mda-mdd-mdsd-any-kind-of-model-driven-approach-will-it-be-the-future/96690#96690Comment by jbandi on Do you use MDA/MDD/MDSD, any kind of model-driven approach? Will it be the future?jbandi2008-11-26T10:13:04Z2008-11-26T10:13:04ZWhat do you mean with "problems with scalability" concerning oAW?http://stackoverflow.com/questions/18655/why-do-we-need-entity-objects/18838#18838Comment by jbandi on Why do we need entity objects?jbandi2008-11-05T09:46:39Z2008-11-05T09:46:39ZIn my opinion stored procedures AND a entity model are not mutually exclusive.
Stored procedures can provide a mechanism to store your entity model. The question is: Does your business logic work with the entities or access stored procedures directly?