You need to explicitly tell lombok to include the super.toString()
via: @ToString(callSuper = true) .
Then you end up with the output:
Bean(super=AbstractBean(name=ConcreateBean), id=112) if I'm not
greatly mistaken.
further reading:
http://projectlombok.org/features/Data.html
-Philipp