I have recently been exposed to naked objects. It looks like a pretty decent framework. However I do not see it in widespread use like say, Spring. So why is this framework not getting any mainstream application credit. What are its shortcomings as you see?
|
3
|
|||
|
|
|
From my experience using NOF 3.0.3... The good:
The bad:
The kinda ugly:
|
||
|
|
|
|
It has been successfully used here in Ireland. I think reasons why it hasnt been more popular are:
|
||
|
|
|
Gareth makes some excellent points. There are other issues, such as the fact that it's hard to control the look and feel, and they are counter-intuitive to people who have become used to the window model. There is also something of a modelling issue, in that not all application domains lend themselves well to direct oject representation. The general model of 'citizen programmer' as espoused in the smalltalk and naked object communities also comes to bear as a questionable idea. Most users don't seem to be hugely bothered with changing the functionality themselves, so thinking in objects is not that useful. |
||
|
|
|
|
I have played with it last year or so, and concluded it is very easy to work with. The strength of Naked Objectsis that you get a GUI structured according to your data model for free. The disadvantage is that a typical user does not think about his proces as a collection of records. My conclusion was that Naked Objects is really great for an internal application which conceptually deals with records, like an inventory application or bill processing application. If you need anything different adapting the framework to your wishes may just be a lot more work than using a framework written to support the kind of application you want. By the way, there is a Web rendering option; see the demo at Naked Objects Demo. |
||
|
|
|
|
Probably the reason it hasn't gotten more attention is that the J2EE world has become so used to piling on so many layers onto an application, that naked objects comes across as naive. Where are our services? You mean that any naked object gives me immediate access to the database? What if we needed to expose the application with RMI calls? Plus there isn't as much to market, because it puts the burden of developing a successful application squarely on the application developers not the framework developers :) |
||
|
|
|
|
I've only just seen this. A couple of minor corrections, otherwise most of the comments are very fair. 1) 'The framework only asks your domain objects (POJOs) to be subclassed from AbstractDomainObject thats all the minimum wiring.' Naked Objects does not require the domain objects to be subclassed from AbstractDomainObject, although that is typically the most convenient thing to do. If you don't want to inherit, all you need to do is provide a property of type IDomainObjectContainer, and the framework will then inject an container into your objects when they are created or retrieved. The container has methods for Resolve(), ObjectChanged() and NewTransientInstance(), which are the three minimalist points of contact with the framework that you must use, so that the framework remains in synch with your domain objects. 2) 'Works great for prototyping along with db4o for persistence'. We're quite keen on the idea of working with db4o, but I'm not aware of anyone who has made Naked Objects and db4o play together. If anyone has done this, I'd like to hear more about it. 3) 'The general model of citzen programmer as espoused in the smalltalk and naked object communities ...'. We have never espoused that idea, and I don't agree with it. Naked Objects is NOT about encouraging users to program. I believe firmly in the role of the professional developer - Naked Objects just helps them to write better software and more productively. Richard |
||
|
|
|
|
Did you take a look at jmatter? |
|||
|
|
|
|
I guess NakedObject definitely has its relevance and its more than time that developer community refocuses on what is really paying them: the business. Instead, we mostly spend our time with infrastructure, protocols and all that technical crap. I have seen such miss constructed applications and I even did some myself following the mainstream, teaching you that layering a system is always a good thing to do. The worst thing is that if you ask some developers about what kind of business the company they are working for does, you’ll find at least some who worked for the company for years without gaining a deeper understanding of the business. However, I don’t believe that NakedObject will attract a vast majority of developers (even those who are inspired from DomainDrivenDevelopment) simply because people love to construct UIs and taken that job away from them, directing their work towards businesses needs, is simply not what they want: We are all VB jerks. |
||
|
|
