Questions tagged [seam]

JBoss Seam is an open source enterprise framework in Java. Because it fulfills some of the missed features of Java technologies such as JavaServer Faces and Enterprise Java Beans, Seam has positioned itself as the prototype for Java EE specifications.

JBoss Seam is an open source enterprise framework in Java. It includes among its features

  • Integrates presentation layer and server side business and persistence logic transparently
  • Dependency injection
  • Universal contextual model
  • Built-in persistence layer by using mediator pattern
  • Transaction management
  • A powerful event model
  • Bult-in Security model
  • Built-in application generator (customizable)

Because it fulfills some of the missed features of Java technologies such as JavaServer Faces (presentation layer) and Enterprise Java Beans (server side business logic), Seam has positioned itself as the prototype for Java EE specifications such as Contexts and Dependency Injection for the Java EE platform (contextual model), JavaServer Faces 2.0 JSR-314 (presentation layer) and Bean validation JSR-303 (validation).

Although Seam has built-in support for some Java EE technologies, you are free to choose the technology that fits better your needs.

Recommended readings

1371 questions
5
votes
2 answers

Seam Faces causes a deploy-time error

I'm running a Java EE 6 application out of an EAR (bundling an EJB-JAR and a WAR) on GlassFish 3.0.1, using ICEfaces 2.0 Beta 1 and a Seam Faces 3.0.0 Alpha 3 Snapshot. When I deploy the EAR, I get an error. This error doesn't happen when I remove…
Nick
  • 2,827
  • 4
  • 29
  • 39
5
votes
1 answer

jbpm questions before project start

I need to evaluate the jbpm workflow engine at this time, after read the documentation I got following questions, if someone can point me any hints will be greatly appreciated(sample code for these questions is preferable)! I know jbpm can…
MemoryLeak
  • 7,322
  • 23
  • 90
  • 133
5
votes
2 answers

How to dynamically pass arguments to messages in the resource bundle

I would like to retrieve the message information from the i18n bundle (messages.properties in seam), but I am not sure how to pass the declare / pass the jobCount variable dynamically in my xhtml The existing code looks like this.
Sam
  • 8,387
  • 19
  • 62
  • 97
5
votes
3 answers

Dynamic Id's in JSF/Seam

Got a little problem with a Seam application I'm working on and I was wondering if anyone knows a way round it. I've got a form in my application that uses AJAX to show certain input boxes depending on an item in a dropdown box. The code works…
Lee Theobald
  • 8,461
  • 12
  • 49
  • 58
5
votes
1 answer

How to rewrite the URL

I have a small application built using Seam 2.2, Richfaces 3.3, JBoss 5.1. Most of the page navigation adds the request parameters to the target URL. I would like to hide parameters to be hidden to the customer who is using the application (e.g. I…
Achaius
  • 5,904
  • 21
  • 65
  • 122
5
votes
1 answer

How to deploy a single webapp with multiple web-modules that may be removed or added individually

We currently run two separate webapps (WARs) deployed in one single EAR containing additional JARs and settings. To improve our deployment I want to split one of these webapps into different modules that may be build and packaged individually. But…
Daniel Bleisteiner
  • 3,190
  • 1
  • 33
  • 47
5
votes
1 answer

Seam 2.x and Hibernate 3.5?

Does anyone know if Hibernate 3.5 is supported under Seam 2.x (specifically 2.2.x)? I'm very interested in some of the JPA 2 features, particularly query building, but work within the Seam framework. Is this version of the library supported? …
Shadowman
  • 11,150
  • 19
  • 100
  • 198
5
votes
2 answers

Order multiple one-to-many relations

I have a search screen, using JSF, JBoss Seam, and Hibernate underneath. There are columns for A, B, and C, where the relations are as follows: A (1< --; >*) B (1< --; >*) C Let's say A has a List< B > and B has a List< C > (both relations are…
Markos Fragkakis
  • 7,499
  • 18
  • 65
  • 103
5
votes
3 answers

Jboss Seam: Enabling Debug page on WebLogic 10.3.2 (11g)

SKIP TO UPDATE 3 I want to enable the Seam debug page on Weblogic 10.3.2 (11g). So, I have done the following: I have the jboss-seam and jboss-seam-debug jars as dependency in both my ejb and web maven projects (both are modules of my superproject)…
Markos Fragkakis
  • 7,499
  • 18
  • 65
  • 103
5
votes
3 answers

strange "String index out of range: 0" error

I have a huge application and at some point, when a redirect is involved i received this strange error: Caused by java.lang.StringIndexOutOfBoundsException with message: "String index out of range: 0" …
Cristian Boariu
  • 9,603
  • 14
  • 91
  • 162
5
votes
2 answers

Seam outjections will be removed?

Jacob Orshalick (author of Seam Framework: Experience the Evolution of Java EE ) said: Outjection allows you to make variables available from the current context for injection or access through EL. This can be beneficial if you want to loosely…
Cristian Boariu
  • 9,603
  • 14
  • 91
  • 162
5
votes
2 answers

StackOverflowError during Building workspace

please take a look at this error, how can i fix it? An internal error occurred during: "Building workspace". java.lang.StackOverflowError
Alberto
  • 59
  • 1
  • 1
  • 2
5
votes
1 answer

JMS/Seam -- Exceptions when creating session?

I have a JBoss Seam 2.3 application that is trying to write events to a JMS queue on JBoss AS 7.1. The writes are occurring within a stateless EJB, and use the standard Seam injection mechanism. The code looks something like this (not an exact…
Shadowman
  • 11,150
  • 19
  • 100
  • 198
5
votes
3 answers

Help configuring JNDI with embedded JBoss in Tomcat 5.5.x

When I try the following lookup in my code: Context initCtx = new InitialContext(); Context envCtx = (Context) initCtx.lookup("java:comp/env"); return (DataSource) envCtx.lookup("jdbc/mydb"); I get the following exception: java.sql.SQLException:…
Joe Dean
  • 3,356
  • 5
  • 26
  • 31
5
votes
2 answers

dropdown menu "Conversion Error setting value '' for 'null Converter'"

So i am using seam to try to make a dropdown menu to add a delivery to a database. I'm using a drop down menu to select which employee from the database is doing the delivery. The menu loads all the employees in the database just fine but when I…
user1423793
  • 279
  • 2
  • 6
  • 16