2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
layout: pattern
|
|
|
|
title: Naked Objects
|
|
|
|
folder: naked-objects
|
2015-08-15 18:03:05 +02:00
|
|
|
permalink: /patterns/naked-objects/
|
2015-08-20 21:40:07 +02:00
|
|
|
categories: Architectural
|
2021-05-19 10:49:05 -06:00
|
|
|
language: en
|
2015-12-28 15:52:44 +02:00
|
|
|
tags:
|
2019-12-13 21:09:28 +02:00
|
|
|
- Decoupling
|
2015-08-13 23:54:40 +02:00
|
|
|
---
|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Intent
|
|
|
|
The Naked Objects architectural pattern is well suited for rapid
|
2015-08-13 23:54:40 +02:00
|
|
|
prototyping. Using the pattern, you only need to write the domain objects,
|
|
|
|
everything else is autogenerated by the framework.
|
|
|
|
|
2019-12-07 20:01:13 +02:00
|
|
|
## Class diagram
|
2015-08-13 23:54:40 +02:00
|
|
|

|
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Applicability
|
|
|
|
Use the Naked Objects pattern when
|
2015-08-13 23:54:40 +02:00
|
|
|
|
2019-12-13 21:09:28 +02:00
|
|
|
* You are prototyping and need fast development cycle
|
|
|
|
* An autogenerated user interface is good enough
|
|
|
|
* You want to automatically publish the domain as REST services
|
2015-08-13 23:54:40 +02:00
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Real world examples
|
2015-08-13 23:54:40 +02:00
|
|
|
|
2015-08-15 18:03:05 +02:00
|
|
|
* [Apache Isis](https://isis.apache.org/)
|
2015-09-03 18:17:07 +05:30
|
|
|
|
2016-01-03 21:14:30 +01:00
|
|
|
## Credits
|
2015-09-03 18:17:07 +05:30
|
|
|
|
2017-09-19 19:59:52 +02:00
|
|
|
* [Richard Pawson - Naked Objects](http://downloads.nakedobjects.net/resources/Pawson%20thesis.pdf)
|