Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EL 中是否有可能调用无状态会话 bean 的方法而不包装在支持 bean 中?将方法调用包装在一个支持 bean 中会产生冗余代码,并使执行 BU 变得很麻烦,因为必须包装每一个方法。
您可以使用 CDI 的@Named.
@Named
例如
@Named @Stateless public class FooService { // ... }
设计的合理性值得怀疑。这是恕我直言的紧密耦合。我最多将这种方法用于极小的 webapps 或快速原型设计。