Using Spring IoC to set up enum values - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:11:32Z http://stackoverflow.com/feeds/question/710392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values 5 Using Spring IoC to set up enum values Olivier 2009-04-02T16:02:31Z 2009-09-05T08:42:23Z <p>Hi there,</p> <p>Given the followin enum :</p> <pre><code>public enum Car { NANO ("Very Cheap", "India"), MERCEDES ("Expensive", "Germany"), FERRARI ("Very Expensive", "Italy"); public final String cost; public final String madeIn; Car(String cost, String madeIn) { this.cost= cost; this.madeIn= madeIn; } } </code></pre> <p>Does someone know a way to set up enum values via Spring IoC at construction time ?</p> <p>Thank you for your time !</p> <p>[Edit] Sorry, my question wasn't cristal clear. What I would like to do is injecting, at class load time, values that are harcoded in the code snippet above. </p> <p>Let's say that the application must be deployed in Germany, where Nano's are better said "Nearly free", and in India where Ferrari's are "Unaffordable". In both country, there are only three cars, no more no less (hence an enum), but there "inner" values may differs. That is, a contextual <strong>initialization</strong> of immutables, which Spring is generally good at. Hope this is more clear (sorry guys, English is not my native langage, which is sometimes a real pain ;))</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/710455#710455 1 Answer by tpdi for Using Spring IoC to set up enum values tpdi 2009-04-02T16:17:54Z 2009-04-02T16:17:54Z <p>What do you need to set up? The values are created when the class loads, and as it's an enum, no other values can be created (unless you add them to the source and recompile).</p> <p>That's the point of an enum, to be able to give limit a type to an explicit range of constant, immutable values. Now, anywhere in your code, you can refer to a type Car, or its values, Car.NANO, Car.MERCEDES, etc.</p> <p>If, on the other hand, you have a set of values that isn't an explicit range, and you want to be able to create arbitrary objects of this type, you'd use the same ctor as in your post, but as a regular, not enum class. Then Spring provides various helper clases to read values from some source (XML file, config file, whatever) and create Lists of that type.</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/710458#710458 3 Answer by bruno conde for Using Spring IoC to set up enum values bruno conde 2009-04-02T16:18:07Z 2009-04-02T16:18:07Z <p>Do you mean setting up the <code>enum</code> itself?</p> <p>I don't think that's possible. You cannot instantiate enums because they have a <code>static</code> nature. So I think that Spring IoC can't <em>create</em> <code>enums</code> as well.</p> <p>On the other hand, if you need to set initialize something with a <code>enum</code> please check out the <a href="http://static.springframework.org/spring/docs/2.5.x/reference/beans.html" rel="nofollow">Spring IoC chapter</a>. (search for enum) There's a simple example that you can use.</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/710733#710733 2 Answer by Brian Agnew for Using Spring IoC to set up enum values Brian Agnew 2009-04-02T17:22:05Z 2009-04-02T17:22:05Z <p>Why not provide a setter (or constructor argument) that takes a String, and simply call <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Enum.html#valueOf%28java.lang.Class,%20java.lang.String%29" rel="nofollow">Enum.valueOf(String s)</a> to convert from a String to an enum. Note an exception will get thrown if this fails, and your Spring initialisation will bail out.</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/710929#710929 0 Answer by Greg Noe for Using Spring IoC to set up enum values Greg Noe 2009-04-02T18:11:40Z 2009-04-02T18:11:40Z <pre><code>&lt;bean id="car" class="Foo"&gt; &lt;property name="carString" value="NANO" /&gt; &lt;/bean&gt; </code></pre> <p>And then in your class Foo, you would have this setter:</p> <pre><code>public void setCar(String carString) { this.carString = Car.valueOf(carString); } </code></pre> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/710985#710985 0 Answer by Greg Noe for Using Spring IoC to set up enum values Greg Noe 2009-04-02T18:23:11Z 2009-04-02T18:23:11Z <p>All right, this is a bit complex but you may find a way to integrate it. Enums are not meant to change at runtime, so this is a reflection hack. Sorry I don't have the Spring implementation part, but you could just build a bean to take in the enum class or object, and another field that would be the new value or values.</p> <pre><code>Constructor con = MyEnum.class.getDeclaredConstructors()[0]; Method[] methods = con.getClass().getDeclaredMethods(); for (Method m : methods) { if (m.getName().equals("acquireConstructorAccessor")) { m.setAccessible(true); m.invoke(con, new Object[0]); } } Field[] fields = con.getClass().getDeclaredFields(); Object ca = null; for (Field f : fields) { if (f.getName().equals("constructorAccessor")) { f.setAccessible(true); ca = f.get(con); } } Method m = ca.getClass().getMethod( "newInstance", new Class[] { Object[].class }); m.setAccessible(true); MyEnum v = (MyEnum) m.invoke(ca, new Object[] { new Object[] { "MY_NEW_ENUM_VALUE", Integer.MAX_VALUE } }); System.out.println(v.getClass() + ":" + v.name() + ":" + v.ordinal()); </code></pre> <p>This is taken from <a href="http://www.theserverside.com/news/thread.tss?thread%5Fid=50190" rel="nofollow">this site</a>.</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/711022#711022 2 Answer by javashlook for Using Spring IoC to set up enum values javashlook 2009-04-02T18:30:08Z 2009-04-02T18:38:56Z <p>I don't think it can be done from Spring's <code>ApplicationContext</code> configuration. But, do you really need it done by Spring, or can you settle for simple externalization using <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/ResourceBundle.html" rel="nofollow">ResourceBundle</a>; like this:</p> <pre><code>public enum Car { NANO, MERCEDES, FERRARI; public final String cost; public final String madeIn; Car() { this.cost = BUNDLE.getString("Car." + name() + ".cost"); this.madeIn = BUNDLE.getString("Car." + name() + ".madeIn"); } private static final ResourceBundle BUNDLE = ResourceBundle.getBundle(...); } </code></pre> <p>In the properties file, one for each specific locale, enter the keys describing the possible internal enum values:</p> <pre><code>Car.NANO.cost=Very cheap Car.NANO.madeIn=India Car.MERCEDES.cost=Expensive ... </code></pre> <p>The only drawback of this approach is having to repeat the name of enum fields (cost, madeIn) in Java code as strings. <strong>Edit</strong>: And on the plus side, you can stack all properties of all enums into one properties file per language/locale.</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/729349#729349 0 Answer by Olivier for Using Spring IoC to set up enum values Olivier 2009-04-08T10:13:09Z 2009-04-08T13:35:46Z <p>Here is the solution I came to (thanks to Javashlook whose answer put me on track). It works, but it's most probably not a production-grade way of doing it.</p> <p>But better than a thousand words, here is the code, I'll let you judge by yourself.</p> <p>Let's take a look at the revised <code>Car</code> enum :</p> <pre><code>public enum Car { NANO(CarEnumerationInitializer.getNANO()), MERCEDES( CarEnumerationInitializer.getMERCEDES()), FERRARI( CarEnumerationInitializer.getFERRARI()); public final String cost; public final String madeIn; Car(ICarProperties properties) { this.cost = properties.getCost(); this.madeIn = properties.getMadeIn(); } } </code></pre> <p>And here are the "plumbling" classes :</p> <pre><code>//Car's properties placeholder interface ... public interface ICarProperties { public String getMadeIn(); public String getCost(); } //... and its implementation public class CarProperties implements ICarProperties { public final String cost; public final String madeIn; public CarProperties(String cost, String madeIn) { this.cost = cost; this.madeIn = madeIn; } @Override public String getCost() { return this.cost; } @Override public String getMadeIn() { return this.madeIn; } } //Singleton that will be provide Car's properties, that will be defined at applicationContext loading. public final class CarEnumerationInitializer { private static CarEnumerationInitializer INSTANCE; private static ICarProperties NANO; private static ICarProperties MERCEDES; private static ICarProperties FERRARI; private CarEnumerationInitializer(ICarProperties nano, ICarProperties mercedes, ICarProperties ferrari) { CarEnumerationInitializer.NANO = nano; CarEnumerationInitializer.MERCEDES = mercedes; CarEnumerationInitializer.FERRARI = ferrari; } public static void forbidInvocationOnUnsetInitializer() { if (CarEnumerationInitializer.INSTANCE == null) { throw new IllegalStateException(CarEnumerationInitializer.class .getName() + " unset."); } } public static CarEnumerationInitializer build(CarProperties nano, CarProperties mercedes, CarProperties ferrari) { if (CarEnumerationInitializer.INSTANCE == null) { CarEnumerationInitializer.INSTANCE = new CarEnumerationInitializer( nano, mercedes, ferrari); } return CarEnumerationInitializer.INSTANCE; } public static ICarProperties getNANO() { forbidInvocationOnUnsetInitializer(); return NANO; } public static ICarProperties getMERCEDES() { forbidInvocationOnUnsetInitializer(); return MERCEDES; } public static ICarProperties getFERRARI() { forbidInvocationOnUnsetInitializer(); return FERRARI; } } </code></pre> <p>Finally, the applicationContext definition :</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans&gt; &lt;bean id="nano" class="be.vinkolat.poc.core.car.CarProperties"&gt; &lt;constructor-arg type="java.lang.String" value="Cheap"&gt;&lt;/constructor-arg&gt; &lt;constructor-arg type="java.lang.String" value="India"&gt;&lt;/constructor-arg&gt; &lt;/bean&gt; &lt;bean id="mercedes" class="be.vinkolat.poc.core.car.CarProperties"&gt; &lt;constructor-arg type="java.lang.String" value="Expensive"&gt;&lt;/constructor-arg&gt; &lt;constructor-arg type="java.lang.String" value="Germany"&gt;&lt;/constructor-arg&gt; &lt;/bean&gt; &lt;bean id="ferrari" class="be.vinkolat.poc.core.car.CarProperties"&gt; &lt;constructor-arg type="java.lang.String" value="Very Expensive"&gt; &lt;/constructor-arg&gt; &lt;constructor-arg type="java.lang.String" value="Italy"&gt;&lt;/constructor-arg&gt; &lt;/bean&gt; &lt;bean id="carInitializer" class="be.vinkolat.poc.core.car.CarEnumerationInitializer" factory-method="build" lazy-init="false"&gt; &lt;constructor-arg type="be.vinkolat.poc.core.car.CarProperties" ref="nano" /&gt; &lt;constructor-arg type="be.vinkolat.poc.core.car.CarProperties" ref="mercedes" /&gt; &lt;constructor-arg type="be.vinkolat.poc.core.car.CarProperties" ref="ferrari" /&gt; &lt;/bean&gt; &lt;/beans&gt; </code></pre> <p>It works, but there is one major weakness : <code>CarEnumerationInitializer</code> MUST be instantiated BEFORE any reference is made to <code>Car</code> enumeration, otherwise CarProperties are null, meaning that Car's properties can't be set when <code>Car</code> is loaded (hence the <code>IllegalStateException</code> thrown, to at least make it crashes in a predictable and documentated way). <code>carInitializer</code> bean's property <code>lazy-init</code> set to an explicit <code>false</code>, to put emphasis on the need to load it as soon as possible. I would say it may be useful in a simple application, one where you can easely guess where a first call to <code>Car</code> will be made. For a larger one, it will probably be such a clutter that I didn't encourage you to use it.</p> <p>Hope this help, comments and vote (up and down) very welcome :) I'll wait for a few days to make this one the accepted answer, to let you react.</p> http://stackoverflow.com/questions/710392/using-spring-ioc-to-set-up-enum-values/1382800#1382800 0 Answer by mP for Using Spring IoC to set up enum values mP 2009-09-05T08:42:23Z 2009-09-05T08:42:23Z <p>Attempting to mutate an Enum is well silly and goes completely against their design objectives. An enum by definition represents a distinct value within a group. If you ever need more / less values you will need to update the source. While you can change an enums state by adding setters (after all they are just objects) your hacking the system.</p>