@javax.ejb.DependsOn: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * EJB Annotations =Overview= <font color=red>TODO EJB 3.1 Specifications, Section 4.8.1.</font>") |
|||
Line 4: | Line 4: | ||
=Overview= | =Overview= | ||
<pre> | |||
@Singleton | |||
public class B { | |||
... | |||
} | |||
</pre> | |||
<pre> | |||
@DependsOn("B") | |||
@Singleton | |||
public class A { | |||
... | |||
} | |||
</pre> | |||
<font color=red>TODO EJB 3.1 Specifications, Section 4.8.1.</font> | <font color=red>TODO EJB 3.1 Specifications, Section 4.8.1.</font> |
Latest revision as of 19:06, 27 April 2017
Internal
Overview
@Singleton public class B { ... }
@DependsOn("B") @Singleton public class A { ... }
TODO EJB 3.1 Specifications, Section 4.8.1.