Annotation Interface ConditionalOnJndi
@Target({TYPE,METHOD})
@Retention(RUNTIME)
@Documented
@Conditional(org.springframework.boot.autoconfigure.condition.OnJndiCondition.class)
public @interface ConditionalOnJndi
@Conditional
that matches based on the availability of a JNDI
InitialContext
and the ability to lookup specific locations.- Since:
- 1.2.0
- Author:
- Phillip Webb
-
Optional Element Summary
-
Element Details
-
value
String[] valueJNDI Locations, one of which must exist. If no locations are specific the condition matches solely based on the presence of anInitialContext
.- Returns:
- the JNDI locations
- Default:
- {}
-