Seam 2 is not maintained anymore, you should have migrated to CDI (Standard Java EE technology) long ago ;).
See https://github.com/seam/migration or more details here https://developer.jboss.org/en/seam/seam2/blog/2015/07/20/migration-from-seam-2-to-cdideltaspike
This software is distributed under the terms of the FSF Lesser GNU Public License (see http://www.gnu.org/licenses/lgpl-3.0.txt).
This is a modified fork of https://github.com/seam2/jboss-seam.
Seam 2.3 targets Java EE 7 capabilities such as JSF2 and JPA2 on the JBoss Enterprise Application Platform 6 (JBoss AS 7) Seam 2.3 also supports RichFaces 4.5
Seam 2 is a powerful open source development platform for building rich Internet applications in Java. Seam integrates technologies such as Asynchronous JavaScript and XML (AJAX), JavaServer Faces (JSF), Java Persistence (JPA), Enterprise Java Beans (EJB 3.1) and Business Process Management (BPM) into a unified full-stack solution, complete with sophisticated tooling.
Seam has been designed from the ground up to eliminate complexity at both architecture and API levels. It enables developers to assemble complex web applications using simple annotated Java classes, a rich set of UI components, a nd very little XML. Seam's unique support for conversations and declarative state management can introduce a more sophisticated user experience while at the same time eliminating common bugs found in traditional web applications.
- Install JBoss AS 7.1.1.Final
- Start JBoss AS by typing
bin/standalone.sh
in the JBoss AS home directory - In the
examples/booking
directory, typemvn clean package
and check for any error messages. - In the booking-ear directory run:
mvn jboss-as:deploy
- Point your browser to
http://localhost:8080/seam-booking/
- Register an account, search for hotels, book a room...
- Read the documentation in https://albfernandez.github.io/jboss-seam/
- Old user forums https://developer.jboss.org/en/seam/seam2
You need an install of Maven 3.0.x
To build Seam from github, just run
git clone https://github.com/albfernandez/jboss-seam.git
cd jboss-seam
mvn -Pdistribution clean package
When finished you have the complete seam distribution in distribution/target/
If you are making changes to source code and want to test quickly without making a full release, you can type
mvn clean package
Resulting jar files will be in each sub-project target directory.