[jboss-user] [EJB3] - Re: Using ejb-jar.xml for @Singleton bean

jaikiran pai do-not-reply at jboss.com
Mon Feb 14 06:06:40 EST 2011


jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

"Re: Using ejb-jar.xml for @Singleton bean"

To view the discussion, visit: http://community.jboss.org/message/587211#587211

--------------------------------------------------------------
Looks like there's a problem merging the xml metadata and the annotations with respect to the @Startup annotation. Use this ejb-jar.xml as a workaround (I have explicitly added the init-on-startup to true in that xml:


<?xml version="1.0" encoding="UTF-8"?>
<ejb-jar xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd"
    version="3.1">

    <enterprise-beans>
        <session>
            <ejb-name>StartupBean</ejb-name>
            <ejb-class>com.example.services.startup.StartupBean</ejb-class>
            <session-type>Singleton</session-type>
            <init-on-startup>true</init-on-startup>
            <ejb-local-ref>
                <ejb-ref-name>ejb/VersionManager</ejb-ref-name>
                <local>com.example.services.version.VersionManager</local>
                <injection-target>
                    <injection-target-class>com.example.services.startup.StartupBean</injection-target-class>
                    <injection-target-name>versionManager</injection-target-name>
                </injection-target>

                <lookup-name>${services.loader}/VersionManagerBean/local</lookup-name>
            </ejb-local-ref>
        </session>
    </enterprise-beans>

</ejb-jar>



Could you please create a JIRA here  https://jira.jboss.org/browse/JBMETA https://jira.jboss.org/browse/JBMETA about the @Startup issue and point to this thread?
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/587211#587211]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2029]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20110214/d75322d8/attachment.html 


More information about the jboss-user mailing list