You can create various Java code templates in Eclipse via the

Window->Preferences->Java -> Editor -> Templates

e.g.

sysout is expanded to:

System.out.println(${word_selection}${});${cursor}

You can activate this by typing sysout followed by CTRL+SPACE

What useful Java code templates do you currently use?
Include the name and description of it and why it's awesome.

There's an open bounty on this for an original/novel use of a template rather than a built-in existing feature.

  • Create Log4J logger
  • Get swt color from display
  • Syncexec - Eclipse Framework
  • Singleton Pattern/Enum Singleton Generation
  • Readfile
  • Const
  • Traceout
  • Format String
  • Comment Code Review
  • String format
  • Try Finally Lock
  • Message Format i18n and log
  • Equalsbuilder
  • Hashcodebuilder
  • Spring Object Injection
  • Create FileOutputStream
link
Automation. Kudos. – bludger Feb 21 '11 at 10:06
1  
Are there any that generate a switch statement from an Enum with all possible cases? I know you can do this with CTRL+1, but I'd rather use cmd completion. – GreenKiwi Sep 22 '11 at 17:21
should've read this two years ago. – Kim Jong Woo Feb 21 at 9:59
feedback

29 Answers

up vote 109 down vote accepted
+50

Create Log4J logger:

${:import(org.apache.log4j.Logger)}
private static final Logger _logger = Logger.getLogger(${enclosing_type}.class);

It both creates the Logger with a proper category and imports it.

For those using SLF4J:

${:import(org.slf4j.Logger,org.slf4j.LoggerFactory)}
private static final Logger _logger = LoggerFactory.getLogger(${enclosing_type}.class);

Source.

link
11  
Cool. I didn't know about the ${:import ...} thingy. – JesperE Jun 23 '09 at 5:13
Me neither, nice! – altCognito Jun 23 '09 at 12:00
3  
I think ${:import ...} only works in newer versions of Eclipse. I'm stuck with 3.2 and it doesn't work for me. – Adam Crume Jul 7 '09 at 22:10
1  
wow that is really impressive – Yoely Jul 8 '09 at 6:33
1  
@Prashant Bhate, It's community wiki, my understanding is the idea is to make the answers as useful as possible. If your offended feel free to remove. – James McMahon Nov 10 '11 at 14:23
show 5 more comments
feedback

Some additional templates here:

http://fahdshariff.blogspot.com/2011/08/useful-eclipse-templates-for-faster.html http://fahdshariff.blogspot.com/2008/11/eclipse-code-templates.html

I like this one:

readfile

 ${:import(java.io.BufferedReader,  
           java.io.FileNotFoundException,  
           java.io.FileReader,  
           java.io.IOException)}  
 BufferedReader in = null;  
 try {  
    in = new BufferedReader(new FileReader(${fileName}));  
    String line;  
    while ((line = in.readLine()) != null) {  
       ${process}  
    }  
 }  
 catch (FileNotFoundException e) {  
    logger.error(e) ;  
 }  
 catch (IOException e) {  
    logger.error(e) ;  
 } finally {  
    if(in != null) in.close();  
 }  
 ${cursor} 

UPDATE: The Java 7 version of this template is:

${:import(java.nio.file.Files,
          java.nio.file.Paths,
          java.nio.charset.Charset,
          java.io.IOException,
          java.io.BufferedReader)}
try (BufferedReader in = Files.newBufferedReader(Paths.get(${fileName:var(String)}),
                                                 Charset.forName("UTF-8"))) {
    String line = null;
    while ((line = in.readLine()) != null) {
        ${cursor}
    }
} catch (IOException e) {
    // ${todo}: handle exception
}
link
18  
i think this is what a method is for :) – benmmurphy Jul 6 '09 at 13:37
2  
Err I think you've missed the point... saying that I actually don't know what your point is... it's about code generation not modularity... – Jon Jul 6 '09 at 16:12
7  
I think the point is that adding this much code in a template is cut-and-paste programming for a very common situation. – smackfu Jun 10 '11 at 15:23
i think he was being cynical on purpose but I could be wrong as this is the internet. – Kim Jong Woo Feb 21 at 10:15
feedback

For log, a helpful little ditty to add in the member variable.

private static Log log = LogFactory.getLog(${enclosing_type}.class);
link
feedback

Format a string

MessageFormat - surround the selection with a MessageFormat.

 ${:import(java.text.MessageFormat)} 
 MessageFormat.format(${word_selection}, ${cursor})

This lets me move a cursor to a string, expand the selection to the entire string (Shift-Alt-Up), then Ctrl-Space twice.

Lock the selection

lock - surround the selected lines with a try finally lock. Assume the presence of a lock variable.

${lock}.acquire();
try {
    ${line_selection}
    ${cursor}
} finally {
    ${lock}.release();
}

NB ${line_selection} templates show up in the Surround With menu (Alt-Shift-Z).

link
feedback

One of my beloved is foreach:

for (${iterable_type} ${iterable_element} : ${iterable}) {
    ${cursor}
}

And traceout, since I'm using it a lot for tracking:

System.out.println("${enclosing_type}.${enclosing_method}()");

Just thought about another one, have found it over Internet some day const:

private static final ${type} ${name} = new ${type} ${cursor};
link
3  
foreach is available as a standard code assist in Eclipse, I don't see that your template does anything additional to the standard version – Rich Seller Jul 3 '09 at 14:08
3  
Right, and sysout is very innovative template. The question was regarding, useful templates we are using. – Artem Barger Jul 3 '09 at 17:03
1  
your traceout is already available in Eclipse as systrace. – dogbane Aug 9 '11 at 9:10
1  
Nice, I want to believe it appears now in Eclipse due to this question. – Artem Barger Aug 16 '11 at 11:23
feedback

A little tip on sysout -- I like to renamed it to "sop". Nothing else in the java libs starts with "sop" so you can quickly type "sop" and boom, it inserts.

link
1  
By default, just typing syso will do the same as sysout. – MasterScrat Aug 10 '11 at 5:25
Beat ya by 25% with sop, though... ;) – Scott Stanchfield Nov 7 '11 at 23:32
feedback

I know I am kicking a dead post, but wanted to share this for completion sake:

A correct version of singleton generation template, that overcomes the flawed double-checked locking design (discussed above and mentioned else where)

Singleton Creation Template: Name this as createsingleton, and

static enum Singleton {
    INSTANCE;

    private static final ${enclosing_type} singleton = new ${enclosing_type}();

    public ${enclosing_type} getSingleton() {
        return singleton;
    }
}
${cursor}


To access singletons generated using above:

Singleton reference Template: Name this ias getsingleton,

${type} ${newName} = ${type}.Singleton.INSTANCE.getSingleton();
link
It's not dead, it's community wiki, so it makes sense to add more templates to it as you find them. There's not really a comprehensive set of these anywhere else... – Jon Jul 15 '10 at 17:07
Jon, the time gap between the earlier post and my post was nearly 8 months, thats what compelled to quote so. I couldn't phrase it better than your comment :) – questzen Jul 23 '10 at 13:10
1  
thanks a lot :) – ufk Nov 6 '11 at 13:48
feedback

Nothing fancy for code production - but quite useful for code reviews

I have my template coderev low/med/high do the following

/**
 * Code Review: Low Importance
 * 
 *
 * TODO: Insert problem with code here 
 *
 */

And then in the Tasks view - will show me all of the code review comments I want to bring up during a meeting.

link
feedback

Throw an IllegalArgumentException with variable in current scope (illarg):

throw new IllegalArgumentException(${var});

Better

throw new IllegalArgumentException("Invalid ${var} " + ${var});  
link
feedback

slf4j Logging

${imp:import(org.slf4j.Logger,org.slf4j.LoggerFactory)}

private static final Logger LOGGER = LoggerFactory
    .getLogger(${enclosing_type}.class);
link
feedback

Null Checks !

if( ${word_selection} != null ){
    ${cursor}
}

if( ${word_selection} == null ){
    ${cursor}
}
link
feedback

strf -> String.format("msg", args) pretty simple but saves a bit of typing.

String.format("${cursor}",)
link
2  
I use String.format("${string}",${objects}) because Eclipse allows me to tab between my string and my list of objects. – Duncan Jones Feb 13 at 9:22
feedback

Some more templates here.

Includes:

  • Create a date object from a particular date
  • Create a new generic ArrayList
  • Logger setup
  • Log with specified level
  • Create a new generic HashMap
  • Iterate through a map, print the keys and values
  • Parse a time using SimpleDateFormat
  • Read a file line by line
  • Log and rethrow a caught exeption
  • Print execution time of a block of code
  • Create periodic Timer
  • Write a String to a file
link
feedback

Bean Property

private ${Type} ${property};

public ${Type} get${Property}() {
    return ${property};
}

public void set${Property}(${Type} ${property}) {
    ${propertyChangeSupport}.firePropertyChange("${property}", this.${property},     this.${property} = ${property});
}

PropertyChangeSupport

private PropertyChangeSupport ${propertyChangeSupport} = new PropertyChangeSupport(this);${:import(java.beans.PropertyChangeSupport,java.beans.PropertyChangeListener)}
public void addPropertyChangeListener(PropertyChangeListener listener) {
  ${propertyChangeSupport}.addPropertyChangeListener(listener);
}

public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener) {
  ${propertyChangeSupport}.addPropertyChangeListener(propertyName, listener);
}

public void removePropertyChangeListener(PropertyChangeListener listener) {
  ${propertyChangeSupport}.removePropertyChangeListener(listener);
}

public void removePropertyChangeListener(String propertyName, PropertyChangeListener listener) {
  ${propertyChangeSupport}.removePropertyChangeListener(propertyName, listener);
}
link
feedback

Get an SWT color from current display:

Display.getCurrent().getSystemColor(SWT.COLOR_${cursor})

Suround with syncexec

PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable(){
    public void run(){
    	${line_selection}${cursor}
    }
});

Use the singleton design pattern:

/**
 * The shared instance.
 */
private static ${enclosing_type} instance = new ${enclosing_type}();

/**
 * Private constructor.
 */
private ${enclosing_type}() {
    super();
}

/**
 * Returns this shared instance.
 *
 * @returns The shared instance
 */
public static ${enclosing_type} getInstance() {
    return instance;
}
link
Daniel, thanks for your edit ;o) – Manuel Selva Jun 23 '09 at 11:39
1  
Just a quick note - According the Maestro known as Joshua Bloch using an Enum should be the preferred method for creating singletons in Java. – Pablojim Jul 2 '09 at 18:51
Hi Pablojim, Since I posted this template I start reading Effective Java and I changed my singletons implementations to enum. Nevertheless I didn't find a way to have the template generating the enum and thus modifying the class declaration. Have you got this template ? Thanks Manu – Manuel Selva Jul 3 '09 at 6:43
FYI: Here's the enum singleton pattern electrotek.wordpress.com/2008/08/06/…. I don't particulary like it but then I don't have many singletons. It's easy to turn this into a Java template. – pjp Jul 3 '09 at 9:44
1  
For the enum approach, I hope all your singletons make sense as Comparable, Serializable objects, because a lot of Singletons don't (and he wonders why this "...approach has yet to be widely adopted" - because comparability and serialization don't make sense for some singleton classes!) – MetroidFan2002 Jun 12 '11 at 6:04
feedback

And an equalsbuilder, hashcodebuilder adaptation:

${:import(org.apache.commons.lang.builder.EqualsBuilder,org.apache.commons.lang.builder.HashCodeBuilder)}
@Override
public boolean equals(Object obj) {
    return EqualsBuilder.reflectionEquals(this, obj);
}

@Override
public int hashCode() {
    return HashCodeBuilder.reflectionHashCode(this);
}
link
feedback

I like a generated class comment like this:

/**
 * I... 
 * 
 * $Id$
 */

The "I..." immediately encourages the developer to describe what the class does. I does seem to improve the problem of undocumented classes.

And of course the $Id$ is a useful CVS keyword.

link
feedback

The template for the logger declaration is great.

I also create linfo, ldebug, lwarn, lerror for the log levels that I use more often.

lerror:

logger.error(${word_selection}${});${cursor}
link
feedback

My favorite few are...

1: Javadoc, to insert doc about the method being a Spring object injection method.

 Method to set the <code>I${enclosing_type}</code> implementation that this class will use.
* 
* @param ${enclosing_method_arguments}<code>I${enclosing_type}</code> instance 

2: Debug window, to create a FileOutputStream and write the buffer's content's to a file. Used for when you want to compare a buffer with a past run (using BeyondCompare), or if you can't view the contents of a buffer (via inspect) because its too large...

java.io.FileOutputStream fos = new java.io.FileOutputStream( new java.io.File("c:\\x.x"));
fos.write(buffer.toString().getBytes());
fos.flush();
fos.close();
link
feedback

Create everything for an event

Since events are kinda a pain to create in Java--all those interfaces, methods, and stuff to write just for 1 event--I made a simple template to create everything needed for 1 event.

${:import(java.util.List, java.util.LinkedList)}

private final List<${eventname}Listener> ${eventname}Listeners = 
    new LinkedList<${eventname}Listener>();

public final void add${eventname}Listener(${eventname}Listener listener)
{
    ${eventname}Listeners.add(listener);
}

public final void remove${eventname}Listener(${eventname}Listener listener)
{
    ${eventname}Listeners.remove(listener);
}

private void raise${eventname}(${eventname}Args args)
{
    for(${eventname}Listener listener : ${eventname}Listeners)
        listener.on${eventname}(args);
}

public interface ${eventname}Listener extends EventListener
{
    public void on${eventname}(${eventname}Args args);
}

public class ${eventname}Args extends EventObject
{
    public ${eventname}Args(Object source${cursor})
    {
        super(source);
    }
}

If you have events that share a single EventObject, just delete the customized one inserted by the template and change the appropriate parts of raise___() and on____().

I had written a nice, little, elegant eventing mechanism using a generic interface and generic class, but it wouldn't work due to the way Java handles generics. =(

link
feedback

I use this for MessageFormat (using Java 1.4). That way I am sure that I have no concatenations that are hard to extract when doing internationalization

i18n

String msg = "${message}";
Object[] params = {${params}};
MessageFormat.format(msg, params);

Also for logging:

log

if(logger.isDebugEnabled()){
  String msg = "${message}"; //NLS-1
  Object[] params = {${params}};
  logger.debug(MessageFormat.format(msg, params));
}
link
feedback

create a mock with mockito (in "Java statements" context):

${:importStatic('org.mockito.Mockito.mock')}${Type} ${mockName} = mock(${Type}.class);

and in "Java type members":

${:import(org.mockito.Mock)}@Mock
${Type} ${mockName};

mock a void method to throw an exception:

${:import(org.mockito.invocation.InvocationOnMock,org.mockito.stubbing.Answer)}doThrow(${RuntimeException}.class).when(${mock:localVar}).${mockedMethod}(${args});

mock a void method to do something:

${:import(org.mockito.invocation.InvocationOnMock,org.mockito.stubbing.Answer)}doAnswer(new Answer<Object>() {
public Object answer(InvocationOnMock invocation) throws Throwable {
    Object arg1 = invocation.getArguments()[0];
    return null;
}
}).when(${mock:localVar}).${mockedMethod}(${args});

verify mocked method called exactly once:

${:importStatic(org.mockito.Mockito.verify,org.mockito.Mockito.times)}verify(${mock:localVar}, times(1)).${mockMethod}(${args});

verify mocked method never invoked:

${:importStatic(org.mockito.Mockito.verify,org.mockito.Mockito.never)}verify(${mock:localVar}, never()).${mockMethod}(${args});

new linked list using Google Guava (and similar for hashset and hashmap):

${import:import(java.util.List,com.google.common.collect.Lists)}List<${T}> ${newName} = Lists.newLinkedList();

also I use a huge template that generates a Test class, here a shortened fragment of it that everyone interested should customize:

package ${enclosing_package};

import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.Matchers.*;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;
import org.mockito.Mockito;
import org.slf4j.Logger;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import org.junit.runner.RunWith;

// TODO autogenerated test stub
@RunWith(MockitoJUnitRunner.class)
public class ${primary_type_name} {

    @InjectMocks 
    protected ${testedType} ${testedInstance};
    ${cursor}

    @Mock
    protected Logger logger;

    @Before
    public void setup() throws Exception {
    }

    @Test
    public void shouldXXX() throws Exception {
        // given

        // when
        // TODO autogenerated method stub

        // then
        fail("Not implemented.");
    }
}
// here goes mockito+junit cheetsheet
link
I'm curious: why would you need to mock the logger? – VVSiz Feb 18 at 12:53
you can verify the mocked logger was called in case an exception was caught (failure scenario). that's espacially useful if you don't intend to rethrow it but want assert it's not silently ignored. – mantrid Feb 20 at 18:46
feedback

Invoke code on the GUI thread

I bind the following template to the shortcut slater to quickly dispatch code on the GUI thread.

${:import(javax.swing.SwingUtilities)}
SwingUtilities.invokeLater(new Runnable() {      
      @Override
      public void run() {
        ${cursor}
      }
    });
link
feedback

Spring Injection

I know this is sort of late to the game, but here is one I use for Spring Injection in a class:

${:import(org.springframework.beans.factory.annotation.Autowired)}
private ${class_to_inject} ${var_name};

@Autowired
public void set${class_to_inject}(${class_to_inject} ${var_name}) {
  this.${var_name} = ${var_name};
}

public ${class_to_inject} get${class_to_inject}() {
  return this.${var_name};
}
link
feedback

Hamcrest Test with Static Imports

here's a template to generate @Test methods with necessary hamcrest imports, if you want to use the new features of JUnit 4.8.2 (assertThat, is, hasItems, etc...)

@${testType:newType(org.junit.Test)}
public void ${testName}() throws Exception {
    // Arrange
    ${staticImport:importStatic('org.hamcrest.MatcherAssert.*','org.hamcrest.Matchers.*')}${cursor} 
    // Act

    // Assert

}

I already used it many times, when writing test.

What is Arrange-Act-Assert?

link
feedback

With help of plugin: http://code.google.com/p/eclipse-log-param/

It's possible to add the following template:

logger.trace("${enclosing_method}. ${formatted_method_parameters});

And get result:

public static void saveUserPreferences(String userName, String[] preferences) {
    logger.trace("saveUserPreferences. userName: " + userName + " preferences: " + preferences);
}
link
feedback

Vector to Array

${array_type}[] ${v:var(Vector)}Array = new ${array_type}[${v}.size()];
${v}.copyInto(${v}Array);
link
feedback

EasyMock templates

Create Mock

${:importStatic(org.easymock.EasyMock.createMock)}
${type} ${name} = createMock(${type}.class);

Reset Mock

${:importStatic(org.easymock.EasyMock.reset)}
reset(${var});

Replay Mock

${:importStatic(org.easymock.EasyMock.replay)}
replay(${var});

Verify Mock

${:importStatic(org.easymock.EasyMock.verify)}
verify(${var});
link
feedback

Here is a constructor for non-instantiable classes:

// Suppress default constructor for noninstantiability
@SuppressWarnings("unused")
private ${enclosing_type}() {
    throw new AssertionError();
}

This one is for custom exceptions:

/**
 * ${cursor}TODO Auto-generated Exception
 */
public class ${Name}Exception extends Exception {
    /**
     * TODO Auto-generated Default Serial Version UID
     */
    private static final long serialVersionUID = 1L;    

    /**
     * @see Exception#Exception()
     */
    public ${Name}Exception() {
        super();
    }

    /**
     * @see Exception#Exception(String) 
     */
    public ${Name}Exception(String message) {
        super(message);         
    }

    /**
     * @see Exception#Exception(Throwable)
     */
    public ${Name}Exception(Throwable cause) {
        super(cause);           
    }

    /**
     * @see Exception#Exception(String, Throwable)
     */
    public ${Name}Exception(String message, Throwable cause) {
        super(message, cause);
    }
}
link
feedback

Your Answer

 
or
required, but never shown

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