<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Some Experiences with JBoss Tools, Eclipse Helios and M2E
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/Thomas.Kriechbaum">Thomas Kriechbaum</a> in <i>JBoss Tools</i> - <a href="http://community.jboss.org/message/580245#580245">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hello,</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>what are your experiences with JBoss Tools (1.1.0..-Beta2 maven-feature, 2.2.0..-beta2 as-feature), Eclipse Helios (3.6.1), JBoss AS 6 Final and M2Eclipse (0.10.2, 0.11.1 wtp-feature)? </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>At the moment, I'm facing the following problems:</p><ul><li>context root of web-module</li><li>republish after changes</li><li>module name is part of global JNDI name</li></ul><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>For testing purposes I have created some maven modules with m2e.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>business (root module)</p><p>+ business-ear (application.xml is generated)</p><p>+ business-core (ejb module containing the EJB implementation)</p><p>+ business-services (ejb client view)</p><p>+ business-ws (web module containing a WS that references the local EJB)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>ticket (root module)</p><p>+ ticket-ear (application.xml is generated)</p><p>+ ticket-core (ejb module containing the EJB implementation)</p><p>+ ticket-services (ejb client view)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><strong>context root of the web-module</strong></p><p>Although business-ear/pom.xml contains a specific context-root, the web-module is only accessible under module-name-version (e.g. business-ws-1.0.0)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-xml"> <span class="jive-xml-tag">&lt;plugin&gt;</span>
&#160; <span class="jive-xml-tag">&lt;groupId&gt;</span>org.apache.maven.plugins<span class="jive-xml-tag">&lt;/groupId&gt;</span>
&#160; <span class="jive-xml-tag">&lt;artifactId&gt;</span>maven-ear-plugin<span class="jive-xml-tag">&lt;/artifactId&gt;</span>
&#160; <span class="jive-xml-tag">&lt;version&gt;</span>2.4.1<span class="jive-xml-tag">&lt;/version&gt;</span>
&#160; <span class="jive-xml-tag">&lt;configuration&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;version&gt;</span>5<span class="jive-xml-tag">&lt;/version&gt;</span>
&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;generateApplicationXml&gt;</span>true<span class="jive-xml-tag">&lt;/generateApplicationXml&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;modules&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;ejbModule&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;groupId&gt;</span>org.foo<span class="jive-xml-tag">&lt;/groupId&gt;</span>
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;artifactId&gt;</span>business-core<span class="jive-xml-tag">&lt;/artifactId&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/ejbModule&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;webModule&gt;</span>
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;groupId&gt;</span>org.foo<span class="jive-xml-tag">&lt;/groupId&gt;</span>
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;artifactId&gt;</span>business-ws<span class="jive-xml-tag">&lt;/artifactId&gt;</span>
&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;contextRoot&gt;</span>business-services_v1_0<span class="jive-xml-tag">&lt;/contextRoot&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/webModule&gt;</span>
&#160;&#160;&#160;&#160;&#160;&#160; <span class="jive-xml-tag">&lt;/modules&gt;</span>
&#160; <span class="jive-xml-tag">&lt;/configuration&gt;</span>
<span class="jive-xml-tag">&lt;/plugin&gt;</span>
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Do I have to provide some specific settings/configuration in this case?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><strong>republish after changes</strong></p><p>The republishing of JEE modules (e.g. WS-Implementation within the web-module) works only, if I perform a "project &gt; clean" on all maven modules. In this case, all maven modules get redeployed correctly. Otherwise, the server state shortly changes to "republish", but the server does not reload the components (=&gt; service behaviour does not change!).</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> Do I have to change any Eclipse settings to avoid "project &gt; clean" after any changes?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><strong>module name is part of global JNDI name</strong></p><p>AFAIK, the EAR name is part of the EJBs global JNDI name.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>For example: </p><pre class="jive-pre"><code class="jive-code">TicketService - EJB3.x Default Remote Business Interface
ticket-ear/TicketServiceBean/remote-at.logis.was.ticket.TicketService - EJB3.x Remote Business Interface
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> This global name is used to reference this EJB via injection</p><pre class="jive-pre"><code class="jive-code">@EJB(mappedName="ticket-ear/TicketServiceBean")
private TicketService ticketService;
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Within Eclipse, the module's version number is not recognized. But when building the components at command line, the version number is added to the EAR by default (e.g. ticket-ear-1.0.0). Therefore, the mapped-name has to be changed to &ldquo;ticket-ear-1.0.0/TicketServiceBean&#8221; before. From my point of view, it is good to have version numbers to support parallel installation of different versions. But how can I tell Eclipse/M2E/... to use version numbers within my workspace as well?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Thanks,</p><p>Thomas</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/580245#580245">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Tools at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2128">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>