I'm using Jboss6 with CDI and some Seam3 modules: seam-solder:3.0.0.Final, seam-servlet:3.0.0.Final and seam-faces:3.0.1.Final. Now I want to add the seam-mail module, but unfortunately it looks not like a release in the next weeks Seam Website:

  • Current version: N/A
  • Maven artifact: TBD
  • Distribution: TBD
  • Documentation: TBD
  • Releases: TBD

Nevertheless I like the idea of templating e-mails in a JSF-style and also use JSF components:

<m:message>
  <m:from name="Peter" address="peter@example.com" />
  <m:to name="#{person.firstname} #{person.lastname}">#{person.address}</m:to>
  <m:subject>Try out Seam!</m:subject>
  <m:body>
    <p><h:outputText value="Dear #{person.firstname}" />,</p>
    <p>You can try out Seam by visiting 
    <a href="http://example.com">http://example.com</a>.</p>
    <p>Regards,</p>
    <p>Pete</p>
  </m:body>
</m:message>

I'm wondering if it's safe to use org.jboss.seam:jboss-seam-mail:2.2.2.Final in this environment or if i would head to jar hell with this apporach.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You would surely head to jar hell.

seam-mail from Seam 2.2 is bound to Seam2 core and dependency injection style, while version 3 is built on CDI.

According to some messages in the developer mailing list, sometime in the future there should be a Seam3 compatibility layer for Seam2, but at this time I would not rely on this possibility.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.