跳至主要内容

JAXB: Diff Results In Java7 and Java8

Diff Result In Intellij & Maven

Recently, we came across some mystrious bugs when using JAXB:
We tested our code using Intellij idea by running junit test, in which all tests passed. So we push my code to remote repos and where some build and regression test will run again. Soon, we found that the tests on remote failed. we re-tested many times in Intellij but code still works. Later, we realize that the remote testing using maven. So we test it locally, using maven. It failed also.

Analysis

My first response is the bug of either Intellij or maven, so we try to search on google, but found nothing. Soon, we find that I can get more detailed message from following command:

mvn -X test

Running it give us more configuration information that maven use. Comparing it with the setting in Intellij, we found that the main difference lay in:

  • maven use Java8, whereas Intellij using Java7

So we change Intellij to use Java8 and the error also be triggered.
Debugging using Intellij, we find that the setter of a field is not called in Java8. By contrast, the setter is called in Java7 version of JAXB.

Search the rule about setter in JAXB, I got the following:

For a collection property, the set will only be called if it has a value of null when the get is first called after the object is instantiated (i.e. you are not initializing it to an empty collection).

From this rule, we found that our list are indeed initialized and setter shouldn’t be called. It turns out a bug of Java7 implementation: setter of a collection is always called.

Further

This designed behavior behind the setter is to let user control the collection more precisely. The user might prefer to use a synchronized collection which JAXB will not break it by setting a new non-synchronized one.

So we remove initialization of collection and add some null check in code (and this is the original reason we add init). But code still not working in Java8!
Our code is like following:

public void setX(X x) {
    this.x = x;
    size += x.size(); // remember the size of list
} 

Can you get where is the problem?


The answer is in Java8, codes like this:

if getX() == null
  List l = new List();
  setX(l); // list is still empty
  l.add(..) // add content which break the `size` counter

And under Java7, it is following way:

List l = new List();
l.add(..)
setX(l); // keep the invariant of `size`

So it turns out a code smell of our setter. We add more functionality into a setter than it should be, which causes the bug. The violation of ‘single responsibility’ is the seed of bug.

Lessons

In conclusion, we get the following lesson:

  • don’t be confused by the superficial phenonmenon (Intellij runs right, maven give error);
  • single responsibility law (setter should be just setter, no other logic; Even further, we should not add logic in the object which mapped to xml for which is the DTO and should not contain logic)

Ref

Written with StackEdit.

评论

此博客中的热门博文

Spring Boot: Customize Environment

Spring Boot: Customize Environment Environment variable is a very commonly used feature in daily programming: used in init script used in startup configuration used by logging etc In Spring Boot, all environment variables are a part of properties in Spring context and managed by Environment abstraction. Because Spring Boot can handle the parse of configuration files, when we want to implement a project which uses yml file as a separate config file, we choose the Spring Boot. The following is the problems we met when we implementing the parse of yml file and it is recorded for future reader. Bind to Class Property values can be injected directly into your beans using the @Value annotation, accessed via Spring’s Environment abstraction or bound to structured objects via @ConfigurationProperties. As the document says, there exists three ways to access properties in *.properties or *.yml : @Value : access single value Environment : can access multi

Elasticsearch: Join and SubQuery

Elasticsearch: Join and SubQuery Tony was bothered by the recent change of search engine requirement: they want the functionality of SQL-like join in Elasticsearch! “They are crazy! How can they think like that. Didn’t they understand that Elasticsearch is kind-of NoSQL 1 in which every index should be independent and self-contained? In this way, every index can work independently and scale as they like without considering other indexes, so the performance can boost. Following this design principle, Elasticsearch has little related supports.” Tony thought, after listening their requirements. Leader notice tony’s unwillingness and said, “Maybe it is hard to do, but the requirement is reasonable. We need to search person by his friends, didn’t we? What’s more, the harder to implement, the more you can learn from it, right?” Tony thought leader’s word does make sense so he set out to do the related implementations Application-Side Join “The first implementation

Implement isdigit

It is seems very easy to implement c library function isdigit , but for a library code, performance is very important. So we will try to implement it and make it faster. Function So, first we make it right. int isdigit ( char c) { return c >= '0' && c <= '9' ; } Improvements One – Macro When it comes to performance for c code, macro can always be tried. #define isdigit (c) c >= '0' && c <= '9' Two – Table Upper version use two comparison and one logical operation, but we can do better with more space: # define isdigit(c) table[c] This works and faster, but somewhat wasteful. We need only one bit to represent true or false, but we use a int. So what to do? There are many similar functions like isalpha(), isupper ... in c header file, so we can combine them into one int and get result by table[c]&SOME_BIT , which is what source do. Source code of ctype.h : # define _ISbit(bit) (1 << (