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

I would like to reuse safetype enum which I already have to specify argument for @Resource annotation which requires String compile time constant. I have not found any elegant solution how to reuse DATASOURCE except this that I enclose:

public enum DATASOURCE {
  // Enum constants
  DataSource1, DataSource2;

  public final static String DataSource1_jndi = "java:/jdbc/DataSource1";
  public final static String DataSource2_jndi = "java:/jdbc/DataSource2";

  public String getJndiName() {
    switch(this) {
      case DataSource1:
        return DataSource1_jndi;
      case DataSource2:
        return DataSource2_jndi;
      default:
        throw new RuntimeException("Not defined jndi name for DATASOURCE " + this);
    }
  }
}

Usage of enum itself

public class DataSourceFactory {

  /**
   * @param ds Identifier of datasource
   */
  public static DataSource getDataSource(DATASOURCE ds) {
    // maybe some caching for datasource identified by constant
    ...
    return (DataSource) new InitialContext().lookup(ds.getJndiName());
  }
}

But now I would like to use the same DATASOURCE constant also in SessionBeans along with @Resource annotation

@Stateless
public class SomeSessionBean {
  // This is what I would love to use but 
  // annotation wants compile time constant :-(
  // @Resource(mappedName=DATASOURCE.DataSource1.getJndiName());
  @Resource(mappedName=DATASOURCE.DataSource1_jndi);
  DataSource ds;

  ... 
}

Any idea?

share|improve this question
It's not a big deal, there is nothing wrong with the solution you have now. – irreputable Feb 10 '11 at 18:36

2 Answers

up vote 0 down vote accepted

Your solution is fine as it is.

share|improve this answer
It's a pitty that miracles do not happen :-( In our application we really have multiple datasources and using datasource name direcly written as literal into code is quite error prone. – Fekete Kamosh Feb 10 '11 at 19:42
I know how you feel. I was surprised about this (the requirement for a constant, not the miracles :-) ) as well when I first discovered it. – Axel Fontaine Feb 10 '11 at 19:45
As miracle have not already happened, I consider your answer as solution :-) – Fekete Kamosh Feb 14 '11 at 10:08

You can simply your enum a little though:

public enum DATASOURCE {
Datasource1("java:/jdbc/DataSource1"), Datasource2("java:/jdbc/DataSource2");
private String jndiReference;

private DATASOURCE(String jndiReference) {
    this.jndiReference = jndiReference;
}

public String getJndiName() {
    return this.jndiReference;
}
}
share|improve this answer
Even if you specify jndiReference as public final String jndiReference then in case you try to use @Resource(mappedName=DATASOURCE.Datasource1.jndiReference) in code compiler complains: "The value for annotation attribute Resource.mappedName must be a constant expression". Please do not erase your answer (even it solves the problem I am afraid) because this exact answer was here yesterday. – Fekete Kamosh Feb 11 '11 at 6:42

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.