English 中文(简体)
如何在部署时使用EJB方法?
原标题:How to call an EJB method when it deploys itself?
  • 时间:2009-11-17 09:11:03
  •  标签:
  • ejb

我想在同一个瞬间从欧洲司法论坛那里寻找一种方法,在这种方法中,有人部署自己,而没有使用一个保护工具。

感谢。

David。

问题回答

看来没有EJB为此目的确定的生活周期方法。 个别供应商可以提供展期,以便这样做。 例如,Startup Beans in Web Sphere ,是把你想要的职业逻辑化的地方。

采用静态方法等技术似乎比较危险,因为我们不知道所有依赖注射是否在静态方法火焰之前完成,因此,你是否能够安全地利用欧洲黄麻组织的业务方法。

顺便说一句,如果我需要便携式,我会击子弹,使用一个防护服。 成本很低。

在静态组群内进行初始工作。 当班轮装载该舱时,该舱将运行一次。

static { System.out.println("static"); }

“后设计”就是正确的。

更多地关注“后工作计划”:

举一个快速例子:

@Stateless
public class TestEJB implements MyEJBInterface{

    @PostConstruct
    public void doThatAfterInitialization() {
        //put your code here to be executed after creation and initialization of your bean
    }

}

在EJB中,法定的初始构件在技术上不是非法的,但用于在(之前)执行代码,任何构造者(可能是一个问题)在瞬间时使用。 它们通常用于启动静态作业地区,如果它们不只读到,则可能非法。 因此,关于使用<代码>ejbCreate(),setSessionContext([>ntityContext() 方法的,(即使不更详细地说明你试图解决的问题,这还是适当的)?

欧洲黄麻和黄麻制品集装箱,如果是附加说明的@Startup,就应在申请部署后立即制造星号。

当然,这将引发静态初始化区、构造者、依赖性注射装置、@PostConstruct方法等。

http://docs.oracle.com/javaee/6/tutorial/doc/giplj.html#giprx” rel=“nofollow”





相关问题
无国籍者会议是不是正常的,而是什么?

无国籍人士会提供什么东西,只是一个有相同方法的正规阶层? 似乎可以在箱子外分发一个州级会议灯,集装箱将制造......

does ejb commits on connection?

i am using session bean in my application and transaction is controlled at EJB layer only. The problem that i am facing is with some commit. I am using the same connection as used by EJB to insert ...

Spring best practice for locking domain objects?

Using EJB entity beans you can configure the bean so that when a thread has access to an EJB entity bean, no other threads can access the EJB bean. The container will block other threads until the ...

Why make an EJB rather than a Web Service?

I would have thought that there is a lot of information out there on this, but I haven t found anything that really answers my question. What are the advantages of making an EJB rather than a web ...

如何在部署时使用EJB方法?

我想在同一个瞬间从欧洲司法论坛那里寻找一种方法,在这种方法中,有人部署自己,而没有使用一个保护工具。

translating outer join SQL query into EJB entity beans

I m new to EJB and trying to get my head around translating SQL concepts to EJB entity beans. Suppose I have two tables: PEOPLE (id, name), CONTACT(pid, phone_number). If I want to get a list of ...

why pool stateless bean?

Normally we use singleton instance for business / dao layer. What is the reason behind pooling stateless session beans in case of EJBs?

Hibernate Validator Exceptions

I m using Hibernate Validator in an application with EJB and Spring MVC. I m using JBoss 5, Hibernate 3 and Spring MVC version 3. I d like to try and catch validation exceptions at Spring Exception ...