Created
March 9, 2012 10:05
-
-
Save jeremie-lesage/2005925 to your computer and use it in GitHub Desktop.
Easy Java Bean toString() using BeanUtils
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** http://www.benmccann.com/dev-blog/easy-java-bean-tostring-using-beanutils/ **/ | |
public String toString() { | |
try { | |
return BeanUtils.describe(this).toString(); | |
} catch (Exception e) { | |
Logger.getLogger(this.getClass()).error("Error converting object to String", e); | |
} | |
return super.toString(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment