Class JndiIntegration


  • public class JndiIntegration
    extends java.lang.Object
    Integrates Guice with JNDI. Requires a binding to Context.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <T> Provider<T> fromJndi​(java.lang.Class<T> type, java.lang.String name)
      Creates a provider which looks up objects in JNDI using the given name.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • fromJndi

        public static <T> Provider<T> fromJndi​(java.lang.Class<T> type,
                                               java.lang.String name)
        Creates a provider which looks up objects in JNDI using the given name. Example usage:
         bind(DataSource.class).toProvider(fromJndi(DataSource.class, "java:..."));