Total Pageviews

Friday, September 29, 2006

XMLException: Unexpected element: CDATA with XMLBeans 2.x - Read the API docs carefully


I recently got an exception while parsing a XML file with XMLBeans 2.x. During the parse of the file I received the exception:
XMLException: Unexpected element: CDATA with XMLBeans 2.x
I called the xxxDocument.Factory.parse(String xmlAsString) method with a string argument pointing to the path of the XML file to parse. Well, at that time, I expected to use the "xmlAsString" parameter as a string object pointing to the path of my XML file (should have read the API docs more carefully). That was totally wrong!
After realizing my mistake I tried the xxxDocument.Factory.parse(File file) method which I called with a File object of the XML document to parse and that did the trick!
Well, I learned my lesson: Read the API docs carefully :-)

Monday, September 25, 2006

Annotation processing with APT-Jelly


There's not much documentation about APT-Jelly out there, although the docs on the homepage are very good I decided to write a short tutorial. APT-Jelly seems to me a little bit underrated and maybe this blog entry helps it to gain more attention .

Tutorial

Given the case we want to generate local and remote interfaces for our EJB3 business class implementation. Java 5 introduces a cool tool called APT (Annotation Processing Tool) which helps the developer in generating Java source files from annotations. Unfortunately it is (just my opinion) some kind of hard work to generate those classes. You have to implement an annotation processor and walk through all of the relevant types and methods that are annotated to generate the source files. At the latest now file templates (for the Java source files) seem to be the right choice in combination with a powerful templating engine like Velocity or Freemarker.
This is the time when APT-Jelly steps in.
APT-Jelly is an engine for generating artifacts (e.g. source code,
config files) from Java source code. APT-Jelly provides a
template-oriented approach to artifact generation by providing an interface for Sun's
Annotation Processing Tool (APT) to a templating engine. Currently, APT-Jelly has direct support for both Jakarta
Commons Jelly
and Freemarker, and indirect support for Velocity
(through the merging capabilities of Jelly).
This tutorial focusses on writing Freemarker templates with APT-Jelly.
Two types of annotations are relevant for our approach: A Type annotation and a Method annotation. Let's start with writing the type annotation.
The type annotation declares, that our business class might expose its methods to either a remote or a local interface or maybe to both interfaces. It might also be helpful that the generated interface extends other interfaces. So here is the "BusinessInterface" annotation declaring the above mentioned elements:
Annotation source file: BusinessInterface.java
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;

@Retention(value = RetentionPolicy.SOURCE)
@Target(value = ElementType.TYPE)
public @interface BusinessInterface {

String local() default ""; // FQCN of the local interface String localExtends() default ""; // FQCN of the interface the local interface should extend String remote() default ""; // FQCN of the remote interface String remoteExtends() default ""; // FQCN of the interface the remote interface should extend
}
The 2nd annotation we are going to implement is a method annotation. We would like to declare, whether the annotated method should be a member of the local or the remote interface or maybe both. So here is the "InterfaceMethod" annotation.
Annotation source file: InterfaceMethod.java
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;

@Retention(value = RetentionPolicy.SOURCE)
@Target(value = ElementType.METHOD)
public @interface InterfaceMethod {

boolean viewTypeLocal() default true; boolean viewTypeRemote() default true;
}
Now let's create a Freemarker template in conjunction with APT-Jelly and get the whole thing running:

The template: BusinessInterface.fmt
<@forAllTypes devar="type">
<@ifHasAnnotation var="ann" annotation="BusinessInterface">
<#if (ann.remote?length > 0)>
<@javaSource name="${ann.remote}">
<#assign interfaceName = ann.remote?substring(ann.remote?last_index_of(".") + 1)>
package ${type.package};
@javax.ejb.Remote
public interface ${interfaceName} <#if (ann.remoteExtends?length > 0)>extends ${ann.remoteExtends} {

<@forAllMethods var="method" annotation="InterfaceMethod" annotationVar="annotatedMethod" returnTypeVar="returnType">
<#if (annotatedMethod.viewTypeRemote = true)>
${method.returnType} ${method.simpleName}(<@forAllParameters var="param" indexVar="paramIndex"><#if paramIndex = 0>${param.type} ${param.simpleName}<#else>, ${param.type} ${param.simpleName})<@forAllThrownTypes var="exception" indexVar="exceptionIndex"><#if exceptionIndex = 0> throws <#else>, ${exception};



}


<#if (ann.local?length > 0)>
<@javaSource name="${ann.local}">
<#assign interfaceName = ann.local?substring(ann.local?last_index_of(".") + 1)>
package ${type.package};
@javax.ejb.Local
public interface ${interfaceName} <#if (ann.localExtends?length > 0)>extends ${ann.localExtends} {

<@forAllMethods var="method" annotation="InterfaceMethod" annotationVar="annotatedMethod" returnTypeVar="returnType">
<#if (annotatedMethod.viewTypeLocal = true)>
${method.returnType} ${method.simpleName}(<@forAllParameters var="param" indexVar="paramIndex"><#if paramIndex = 0>${param.type} ${param.simpleName}<#else>, ${param.type} ${param.simpleName})<@forAllThrownTypes var="exception" indexVar="exceptionIndex"><#if exceptionIndex = 0> throws <#else>, ${exception};



}



If you are familiar with Freemarker most of the stuff should be easy to understand. The interesting stuff are the custom directives of APT-Jelly. Those directives start with a "@". The Freemarker built-in functions start with a "#".
The lines:
<@forAllTypes var="type">
<@ifHasAnnotation var="ann" annotation="BusinessInterface">

iterates through all types (classes) with a type annotation called "BusinessInterface" we have developed earlier in this tutorial.
<#if (ann.remote?length > 0)>
Now it's interesting to see, whether we have to generate local, remote or both interfaces. We start by looking up the remote element. If the element's value length is greater 0 we assume that we have the FQCN of the remote interface and we can start generating a Java source file with this name:
<@javaSource name="${ann.remote}">
I leave out the generation of the class header (interface xxx extends yyy, etc..) and go straight on to generating the methods:
<@forAllMethods var="method" annotation="InterfaceMethod" annotationVar="annotatedMethod" returnTypeVar="returnType">
We have to iterate through all methods that are annotated with the annotation "InterfaceMethod" we developed earlier. Now we have to construct the interface methods.
<#if (annotatedMethod.viewTypeRemote = true)>

${method.returnType} ${method.simpleName}(
<@forAllParameters
var="param" indexVar="paramIndex"><#if paramIndex =
0>${param.type} ${param.simpleName} <#else>, ${param.type}
${param.simpleName}
)
<@forAllThrownTypes
var="exception" indexVar="exceptionIndex"><#if exceptionIndex =
0> throws <#else>,
${exception}
;


This expression looks very confusing (especially unformatted in this blog entry), but it is pretty simple. We determine, if the annotated method's viewType is remote (referencing the "annotationVar" variable in the @forAllMethods directive) and in this case we insert all the relevant parameters with the APT-Jelly @forAllParameters directive.
The last thing to do is adding the throws clause in case the method throws an exception (@forAllThrownTypes).
The second part of the template repeats the generating stuff for the local interfaces. The solution is not perfect, but it works and shows some of the power of APT-Jelly.

The last thing to do now is execute APT and generate the sources. There are at least 4 jar archives which must be added to the classpath when calling apt:
  1. apt-jelly-core
  2. apt-jelly-freemarker
  3. freemarker
and the jar containing the annotations we have developed for generating the business interfaces (ejb3-annotations-1.0-SNAPSHOT.jar). Assuming all the jars live in the directory e:/temp and the sources of the ejb business implementation live under the directory "ejb/", we can generate the interfaces for the business implementations with the following apt call:
apt -cp e:/temp/apt-jelly-core-2.0.1.jar;e:/temp/apt-jelly-freemarker-2.0.1.jar;
e:/temp/freemarker-2.3.8.jar;e:/temp/ejb3-annotations-1.0-SNAPSHOT.jar -s target/gen -factory net.sf.jelly.apt.freemarker.FreemarkerProcessorFactory -Atemplate=BusinessInterface.fmt ejb/*.java

This will generate the business interfaces in the specified target directory (target/gen).
So let's have a look at some sample Java code using the above developed annotations. Assuming the following business class implementation:
package ejb;

import java.util.HashMap;

@BusinessInterface(remote = "ejb.InterfaceTestRemote",
remoteExtends = "ejb.InterfaceBase",
local = "ejb.InterfaceTestLocal")
public class InterfaceTestImplementation {
@InterfaceMethod
public void testDummy() throws Exception {

}

@InterfaceMethod
public String testDummy2(String dummyString) throws IllegalStateException, IllegalArgumentException {
return "";
}

@InterfaceMethod(viewTypeLocal = false)
public String testDummy3(String dummy2String, HashMap map) {
return "";
}

@InterfaceMethod(viewTypeLocal = false, viewTypeRemote = true)
public void testDummy4() {

}

@InterfaceMethod(viewTypeLocal = true, viewTypeRemote = true)
public void testDummy5() {
}

@InterfaceMethod(viewTypeLocal = false, viewTypeRemote = false)
public void testDummy6() {
}

public void testDummy7() {
}

@InterfaceMethod
public void testDummy8() {
}
}

We declare some of the methods as interface methods, some of it should appear in the remote and some of it should appear in the local interface. There are also methods which should not become a member of the generated interfaces (testDummy6 and testDummy7).
Running apt with the above mentioned command would generate the following two Java business interfaces:
InterfaceTestRemote.java
package ejb;

@Remote
public interface InterfaceTestRemote extends ejb.InterfaceBase {
void testDummy() throws java.lang.Exception;
java.lang.String testDummy2(java.lang.String dummyString) throws java.lang.IllegalStateException, java.lang.IllegalArgumentException;
java.lang.String testDummy3(java.lang.String dummy2String, java.util.HashMap map);
void testDummy4();
void testDummy5();
void testDummy8();
}

InterfaceTestLocal.java
package ejb;

@Local
public interface InterfaceTestLocal {
void testDummy() throws java.lang.Exception;
java.lang.String testDummy2(java.lang.String dummyString) throws java.lang.IllegalStateException, java.lang.IllegalArgumentException;
void testDummy5();
void testDummy8();
}

The generated remote interface extends an already existing base interface called ejb.InterfaceBase. In a next trail I will explain how to generate those base interface as well (as proposed in the book "Enterprise Java Beans") and how to use macros (some sort of methods) in a Freemarker template.
APT-Jelly really seems to simplify a lot!

Sunday, September 10, 2006

Refactorings with C# part II


Well, as Arvid pointed out in his comment about my first (very frustrating) experiences with refactorings in .NET IDEs (especially Visual Studio), there is a tool called ReSharper by JetBrains. This brings nearly most of the power of Intellij IDEA's refactoring methods to Visual Studio .NET. In fact, I can't really live without it anymore.
There is another tool which competes with ReSharper called CodeRush. It may be as powerful as ReSharper but I don't have the time to evaluate it. If you are interested in a comparison you should read this blog entry and this one.

Thursday, August 24, 2006

Frustrating refactoring options in .NET IDEs


I am currently in process of learning C#. I will not discuss here the pros and cons of C# compared to Java. I am mostly a Java programmer but it's always good to see what else is going on in the programming world ;-)
Well, after learning the core language features (keywords, differences to Java, etc...) I started my first C# program. And yes, it was this little HelloWorld example ...
Nothing really fancy and pretty straight forward. What really catches my eye was the complete abscence of any refactoring support in Visual Studio .Net
Digging a little bit further I discovered an IDE called ShardDevelop which claims to have refactoring support. The only refactoring operation it does provide is "Renaming" a class, method or variable.
There is another IDE called MonoDevelop which was started by the Mono Project. AFAIK it only runs under Linux and Mac OS X and I haven't found any documentation about refactoring support.
Almost desperate I tried MS Visual Studio 2005 and et voila, this IDE does provide at least more than one refactor command. Here is a list of available refactoring options:
  • Extract Method
  • Encapsulate Field
  • Extract Interface
  • Reorder Parameters
  • Remove Parameters
  • Rename
  • Promote local Variable to Parameter

Of course this is nothing compared to the rich refactoring support of IDEs like Intellij IDEA or Eclipse, but it is a starting point.
Now I have to find out, what the heck is the difference between Visual Studio .NET and Visual Studio 2005...
Ah, I found the solution: Visual Studio 2005 is the successor of Visual Studio .NET.

Saturday, August 05, 2006

Two tomcats in my rooms ...

I am now the proud owner of two male cats with the names of "Kalle" (short for Karlsson, the blue-grey one) and "Adonis" (the white one). Kalle is 2 years old (Birthday 2004-06-04) and Adonis is 18 weeks (Birthday 2006-03-16) .
Kalle is a little bit shy and the complete opposite of Adonis, who is curious and aggressive. Very nice combination though.

Sunday, July 30, 2006

Cyclassics 2006 in Hamburg

Today I made one of my greatest performances in cycling ever.
I won the 100 km VIP Race of the Hamburg Cyclassics. Unfortunately I didn't get a ticket for the "normal" 100 km race so I had to start in the VIP race.
My finishing time was 2h 25m 34s 62ms, that is a average speed of approx. 41,20 km/h.
Puh, I really felt exhausted after the finish.
Here is an excerpt of the result.
Platz   Name                        Zeit        Ø km/h
1       Quebbemann, Ralf (GER)      2:25:34,62  40.76
2       Speicher, Matthias (GER)    2:26:33,38  40.91
3       Toetzke, Christian (GER)    2:26:46,34  40.85
4       Neutzner, Christoph (GER)   2:26:52,78  40.84
5       Golly, Michael (GER)        2:28:04,45  40.52
6       Elsing, Ulrich (GER)        2:29:11,99  40.21
7       Sommer, Ken (GER)           2:29:21,87  40.17
8       Dr. Lennartz, Peter (GER)   2:36:23,68  38.36
9       Feyen, Jürgen (GER)         2:37:10,50  38.17
10      Bell, Markus (GER)          2:37:18,52  38,14

Tuesday, July 18, 2006

Using build numbers in Maven 2

Today I discovered a fine Maven 2 plugin which helps you getting a unique build number for each time you build your project.
It is called the Maven Build Number Plugin.
Sometimes one wants to place a unique build number into a manifest file of a jar archive, then you definitely should go an try out this plugin.

Saturday, July 15, 2006

Tires Michelin Pro2 Race

I installed a complete set of those tires on my racing bike yesterday and I am completely overwhelmed of the quality and the boost of speed with these tires. I raised my average speed about 0,6 km/h on a 40 km distance trip!
Go and check them out. Average price is about 50 - 60€ for a complete set.

Thursday, July 13, 2006

Walter Trout released new album

One of my favorite blues guitarists released a new album entitled "Full circle", featuring recording sessions with many different artists, e.g. Joe Bonamassa, Jeff Healey, Bernard Allison, Coco Montoya.
Check out Walter's website for more infos.
Moreover Walter is coming to Germany in November and December. Check out his tour dates page to get the newest infos. Maybe he is coming near to your area.


Monday, July 10, 2006

Show Review: Stevie Ray Vaughan - Rome Inn, Austin, TX, USA (1980-??-??)

This is one of my all time favorite early Stevie Ray Vaughan. So much power and emotion especially in the first 2 songs!