During the last Devoxx conference, Mark Reinhold, Sun's chief engineer for Java SE, gave a presentation on the latest directions for Java 7. (Hamlet D'Arcy's summary of Mark's presentation is available here.)
One of the features that was discussed for possible inclusion in Java 7, but won't find its way into the final release, is first class properties for Java. First-class support for properties would have gone beyond the simple setter and getter methods of the JavaBeans specification, and provided a succinct and elegant way for defining properties for Java objects.
Properties are already first-class elements of many modern languages, so this lack in Java 7 will be felt by many developers accustomed to other languages' property support. At the same time, Java developers can resort to a handful of other techniques in working with property-like Java attributes, and some of the possible techniques work even in Java 1.4. In the rest of this article, I will demonstrate one such technique use a simple aspect, with AspectJ, and some following some conventions.
Motivation
The idea for this solution arose while working with the OpenXava 3 framework. OpenXava defines a mechanism to develop Java Enterprise applications using Business Components. It's an alternative way to MVC: instead of organizing the code into Model, a View and a Controller, the code with OpenXava is organized around Invoice, Customer, Order, and similar business-centric objects. OpenXava initially used XML for defining components, but since version 3 the use of POJOs with Java 5 annotations also became available as the preferred way to define business components.
When using the XML-based object definition, you may specify a component in the following manner:
<entity>
<property name="id" type="String" key="true"
size="5" required="true"/>
<property name="name" type="String"
size="40" required="true"/>
<collection name="pupils">
<reference model="Pupil"/>
</collection>
</entity>
</component>
Using the annotation-based OpenXava 3, the same component would be defined as follows:
01.
@Entity
02.
public
class
Teacher {
03.
04.
@Id
@Column
(length=
5
)
@Required
05.
private
String id;
06.
07.
@Column
(length=
40
)
@Required
08.
private
String name;
09.
10.
@OneToMany
(mappedBy=
"teacher"
)
11.
private
Collection pupils;
12.
13.
public
String getId() {
14.
return
id;
15.
}
16.
17.
public
void
setId(String id) {
18.
this
.id = id;
19.
}
20.
21.
public
String getName() {
22.
return
name;
23.
}
24.
25.
public
void
setName(String name) {
26.
this
.name = name;
27.
}
28.
29.
public
Collection getPupils() {
30.
return
pupils;
31.
}
32.
33.
public
void
setPupils(Collection pupils) {
34.
this
.pupils = pupils;
35.
}
36.
37.
}
This illustrates some of the verbosity with the Java definition: 37 lines against the 13 of XML version. The problem occurs because of the getters and setters. The boilerplate code adds noise and increases the size of the file without increasing the information to the programmer. Use Java and annotations as a definition language in OpenXava would welcome a more succinct and elegant syntax.
A More Succinct Solution
A better solution can be obtained by defining the business component in this way:
01.
@Entity
02.
public
class
Teacher {
03.
04.
@Id
@Column
(length=
5
)
@Required
05.
public
String id;
06.
07.
@Column
(length=
40
)
@Required
08.
public
String name;
09.
10.
@OneToMany
(mappedBy=
"teacher"
)
11.
public
Collection pupils;
12.
13.
}
This makes Java more beautiful, succinct and elegant... just as XML.
With this, you have to use the following properties without getters and setters. That is, instead of:
1.
teacher.setName(
"M. Carmen"
);
2.
String result = teacher.getName();
you write:
1.
teacher.name =
"M. Carmen"
;
2.
String result = teacher.name;
In this case name is not a field, but a property. You can refine the access to this property, and even create pure calculated properties.
For example, if you wanted a calculated property, you could define it in this way:
01.
@Entity
02.
public
class
Person {
03.
04.
...
05.
06.
public
String name;
07.
public
String surname;
08.
09.
10.
transient
public
String fullName;
// (1)
11.
protected
String getFullName() {
// (2)
12.
return
name +
" "
+ surname;
13.
}
14.
}
In order to define a calculated property, you define a public field (1) and then a protected (or private, but not public) getter (2). This getter, getFullName() in this case, is for implementing the logic for the property fullName.
Using this property is simple:
1.
Person p =
new
Person();
2.
p.name =
"M. Carmen"
;
3.
p.surname =
"Gimeno Alabau"
;
4.
assertEquals(
"M. Carmen Gimeno Alabau"
, p.fullName);
When p.fullName is used, the method getFullName() is executed for returning the value. You can see that fullName is a property, not a simple field.
You can also refine access to writing and reading the properties. For example, you can define a property as following:
1.
public
String address;
2.
protected
String getAddress() {
3.
return
address.toUpperCase();
4.
}
When address is used from outside the class the method getAddress() is used to obtain the result, but this method only returns the address with some refinement. As we use address field from inside getAddress() field address from inside of its class is used, and the getter is not called.
Now you can use this property as follows:
1.
Person p =
new
Person();
2.
p.address =
"Av. Baron de Carcer"
;
3.
assertEquals(
"AV. BARON DE CARCER"
, p.address);
As well, you can define setters, even for vetoing the data to be set, as in the next example:
1.
public
int
age;
2.
protected
void
setAge(
int
age) {
3.
if
(age >
200
) {
4.
throw
new
IllegalArgumentException(
"Too old"
);
5.
}
6.
this
.age = age;
7.
}
As in the case of the getter, if a setter method is present it will be executed to set the data, you can use this logic to set the data to the field or for any other logic you want. Now you can use this property in this way:
1.
Person p =
new
Person();
2.
p.age =
33
;
3.
assertEquals(p.age,
33
);
4.
p.age =
250
;
// Here an IllegalArgumentException is thrown
In summary:
-
Properties behave from outside of the class as public fields.
-
If no getter or setter for the field exists, a direct access for the field is performed.
-
If a getter exists for the field, it will be executed when trying to read the field from outside.
-
If a setter exists for the field, it will be executed when trying to write the field from outside.
-
From inside the class, all references to the field are direct access, without calling getter or setter.
This provides a simple and natural way to have properties in Java without unnecessary getters and setters.
Implementation
This simple mechanism is easy to implement using AspectJ and a simple aspect, and it will work even in Java 1.4.
For this to work, you only need to have an aspect in your project:
01.
aspect PropertyAspect {
02.
03.
04.
pointcut getter() :
05.
get(
public
!
final
!
static
* *..model*.*.*) &&
06.
!get(
public
!
final
!
static
* *..model*.*Key.*) &&
07.
!within(PropertyAspect);
08.
pointcut setter() :
09.
set(
public
!
final
!
static
* *..model*.*.*) &&
10.
!set(
public
!
final
!
static
* *..model*.*Key.*) &&
11.
!within(PropertyAspect);
12.
13.
Object around(Object target, Object source) :
14.
target(target) &&
this
(source) && getter() {
15.
16.
if
(target == source) {
17.
return
proceed(target, source);
18.
}
19.
try
{
20.
String methodName =
"get"
+
21.
Strings.firstUpper(
22.
thisJoinPointStaticPart.getSignature().getName());
23.
Method method =
24.
target.getClass().
25.
getDeclaredMethod(methodName,
null
);
26.
method.setAccessible(
true
);
27.
return
method.invoke(target,
null
);
28.
}
29.
catch
(NoSuchMethodException ex) {
30.
return
proceed(target, source);
31.
}
32.
catch
(InvocationTargetException ex) {
33.
Throwable tex = ex.getTargetException();
34.
if
(tex
instanceof
RuntimeException) {
35.
throw
(RuntimeException) tex;
36.
}
37.
else
throw
new
RuntimeException(
38.
XavaResources.getString(
"getter_failed"
,
39.
thisJoinPointStaticPart.
40.
getSignature().getName(),
41.
target.getClass()), ex);
42.
}
43.
catch
(Exception ex) {
44.
throw
new
RuntimeException(
45.
XavaResources.getString(
"getter_failed"
,
46.
thisJoinPointStaticPart.getSignature().getName(),
47.
target.getClass()), ex);
48.
}
49.
}
50.
51.
void
around(Object target, Object source, Object newValue) : target(target) &&
this
(source) && args(newValue) && setter() {
52.
if
(target == source) {
53.
proceed(target, source, newValue);
54.
return
;
55.
}
56.
try
{
57.
String methodName =
"set"
+
58.
Strings.firstUpper(thisJoinPointStaticPart.getSignature().getName());
59.
Class fieldType = ((FieldSignature)
60.
thisJoinPointStaticPart.getSignature()).getFieldType(
61.
Method method =
62.
target.getClass().
63.
getDeclaredMethod(methodName,
new
Class[] {fieldType});
64.
method.setAccessible(
true
);
65.
method.invoke(target,
new
Object[] { newValue } );
66.
}
67.
catch
(NoSuchMethodException ex) {
68.
proceed(target, source, newValue);
69.
}
70.
catch
(InvocationTargetException ex) {
71.
Throwable tex = ex.getTargetException();
72.
if
(tex
instanceof
RuntimeException) {
73.
throw
(RuntimeException) tex;
74.
}
75.
else
throw
new
RuntimeException(
76.
XavaResources.getString(
"setter_failed"
,
77.
thisJoinPointStaticPart.getSignature().getName(),
78.
target.getClass()), ex);
79.
}
80.
catch
(Exception ex) {
81.
throw
new
RuntimeException(
82.
XavaResources.getString(
"setter_failed"
,
83.
thisJoinPointStaticPart.getSignature().getName(),
84.
target.getClass()), ex);
85.
}
86.
}
87.
}
Having defined this aspect, you will need to compile your project using AspectJ.
The aspect intercepts all access to public fields in the model package, then use introspection to call to the getter or setter method if they exists.
Drawbacks
Unfortunately, this approach has at least two important drawbacks:
-
It does not work when you access to the properties using introspection.
-
With JPA, at least using the Hibernate implementation, lazy initialization does not work.
You may think that the introspection problem can be overcome with your own custom introspection code. But the man third party libraries, frameworks, and toolkits will not obey those rules. For example, if you are using a report generator that can generate a report from a collection of Java objects, the report generator may expect real public getters and setters in the objects.
The JPA the specification for Java Persistence API states that: 2.0:
"Instance variables must not be accessed by clients of the entity. The state of the entity is available to clients only through the entity methods i.e., accessor methods (getter/setter methods) or other business methods."
JSR 317 : JavaTM Persistence API, Version 2.0 - Public Review Draft - Section 2.1
That is, portable JPA code should not rely on direct access to properties.
Conclusion
This article presents a very simple way to work with properties in Java, even though the language doesn't support properties. If the AspectJ implementation is not practical, you can find other implementations of this idea using asm or cglib.
References
OpenXava - http://www.openxava.org/
AspectJ - http://www.eclipse.org/aspectj/
No comments:
Post a Comment