Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Instead of hardcoding the default @author template I would like Eclipse to use user's real name taken from account information (in Linux - but Windows solution is also welcome). Entering it somewhere into Eclipse configuration would be acceptable, too, alas I can't find the right place.

share|improve this question
If you're curious the default version of the variable can be obtained by calling: System.getProperty("user.name") and where Java takes it from is system dependent. – Maciej Biłas Dec 10 '09 at 15:45
3  
+1 That is really an useful question – jilen Jul 22 '11 at 1:43

5 Answers

up vote 71 down vote accepted

http://morlhon.net/blog/2005/09/07/eclipse-username/

It seems that your best bet is to redefine the java user.name variable either at your command line, or using the eclipse.ini file in your eclipse install root directory. This seems to work fine for me:

-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256M
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Duser.name="Davide Inglima"
-Xms40m
-Xmx512m
share|improve this answer
10  
The risk is that this will break any plug in that needs to know the user ID (which is the documented value of the user.name property). It would be nice if there was a better way to adjust the value Eclipse will use for that variable. – Diastrophism May 5 '10 at 23:42
16  
For me the " caused a problem, I had to do: -Duser.name=Ron Kitay to have it behave properly – RonK Aug 1 '11 at 5:11
7  
An even BETTER solution would be for Eclipse to have another variable such as ${programmer} that one could define and then use in the templates (or even allow people to create their own variables!). But this IS Eclipse, sigh. – Scott Biggs Nov 13 '11 at 18:32
1  
dovescrywolf gave tip on article which was useful for me on MacOS. Under console it looks like this: $ pwd /Users/You/YourEclipseInstalationDirectory $ cd Eclipse.app/Contents/MacOS/ $ echo "Duser.name=Your Name" >> eclipse.ini $ cat eclipse.ini – Łukasz Siwiński Feb 15 '12 at 23:25
Loved it. Thanks ! – aakashbhowmick Dec 1 '12 at 9:58
show 1 more comment

Open Eclipse, go to Window -> Preferences -> Java -> Code Style -> Code Templates -> Comments -> Types and then press the 'Edit' button. There you can change your name in the generated comment form @Author ${user} to @Author Rajish.

share|improve this answer
8  
That's not the answer to the question – Rajish Jul 12 '11 at 8:07
4  
@Rajish: you're absolutely right, but it may be the only reasonable workaround. After evaluating the options, it's what I did. – Scott Biggs Nov 13 '11 at 18:30
@Rajish and it does solve the problem, so I'd say it's ok :) – Aram Kocharyan Sep 3 '12 at 1:26
4  
This is the best answer in my opinion - instead of messing with command line and eclipse.ini, which are platform dependent and arguably too cumbersome for the task they accomplish, one simply often wishes to do a per-project setting - and doing so in Project properties like suggested above may at present time be the only way to do it. – amn Oct 9 '12 at 9:23
I think is not the right answer because there is a lot of languages and editors using Eclipse, not only Java. So that only solve the problem for the ones using Eclipse to edit Java, not all other languages. – unkiwii Mar 13 at 1:58

dovescrywolf gave tip as a comment on article linked by Davide Inglima

It was was very useful for me on MacOS.

  • Close Eclipse if it's opened.
  • Open Termnal (bash console) and do below things:

    $ pwd /Users/You/YourEclipseInstalationDirectory
    $ cd Eclipse.app/Contents/MacOS/
    $ echo "Duser.name=Your Name" >> eclipse.ini
    $ cat eclipse.ini

  • Close Terminal and start/open Eclipse again.

share|improve this answer

Rather than changing ${user} in eclipse, it is advisable to introduce

-Duser.name=Whateverpleaseyou,

in eclipse.ini which is present in your eclipse folder.

share|improve this answer
1  
-1 No, eclipse.ini even saved as UTF-8 doesn't handle correctly French accent like àôéù... – Aubin Jan 14 at 21:26
3  
What is the point of posting, four years later, the same solution than the accepted one? – PhiLho Feb 14 at 15:08
@Aubin actually right now I'm running an eclipse that supports accents like áóë.. etc with no problems. So this is a correct and helpfull answer. – unkiwii Mar 15 at 13:40

just other option. goto PREFERENCES >> JAVA >> EDITOR >> TEMPLATES, Select @author and change the variable ${user}.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.