user1507570
user1507570

Reputation: 1

Trying to clarify the relationship between JBoss Application Server and Seam:

I am trying to clarify the relationship between JBoss Application Server and Seam:

  1. Is the Seam distribution, or any part of it, included in standard JBoss AS download zip files?
  2. If only a part of the Seam distribution is included, which part?
  3. If not, is the Seam distribution intended to be downloaded separately from http://www.jboss.org/projects and added into the AS?

Thanks

Upvotes: 0

Views: 78

Answers (1)

MikkolidisMedius
MikkolidisMedius

Reputation: 4844

Seam is not distributed alonside JBoss AS. It is a framework intended to support development of web applications (much like Spring or Struts) and is not tied to JBoss AS in any way (you could use Seam equally well in Glassfish or any other application server, and JBoss AS does not require Seam at all).

Usually, the Seam libraries are part of your own project, among the EAR or WAR libraries. It is to be downloaded separately from www.seamframework.org or JBoss projects sites and is usually distributed in "runtime" form (you get the seam libraries alongside all dependencies and utility programs, such as seam-gen for project generation).

Upvotes: 2

Related Questions