Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sathish-io/5671677 to your computer and use it in GitHub Desktop.
Save sathish-io/5671677 to your computer and use it in GitHub Desktop.
Code Development tools/tips
Eclipse/STS uses windows login a/c name as a author name for any new java source file that you create. This is default settings.
Sample author section created when windows login a/c is sathish
/**
* @author sathish
*
*/
Its good pracite to show full author name.
To do that edit STS.ini or eclipse.ini file and add below property,
-Duser.name=Sathishkumar Kandasamy
After that you will see full author name for any new java source file that you create as shown below.
/**
* @author Sathishkumar Kandasamy
*
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment