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
0
votes
1 answer

Hibernate Filter with seam

I tried to use the hibernate filters with seam. However it thrown below exception 17:09:37,154 ERROR [STDERR] org.hibernate.HibernateException: No such filter configured [contributorTypeFilter] at…
iamjustcoder
  • 4,714
  • 10
  • 33
  • 46
0
votes
1 answer
0
votes
2 answers

How to condition navigation in seam on a parameter

I have a Seam application originally generated by seam-gen with a view Search.xhtml. Search.xhtml has a number of input fields, half of which are bound to the Office entity and half to the Devices entity. For example, if you enter a hostname, it is…
april26
0
votes
2 answers

SEAM Entity Query on field of sub object

Using seam-gen based code. I have an object "Classroom", which contains an instance of "Location". I want to query for classrooms but specifying a value on the Location object. Something like 'select from Classroom where Location.State = "NY"'. …
0
votes
1 answer

How to add seam in existing JSF application?

I have existing JSF portlet application running in Liferay ,How to add Seam support? I am using JSF2. Also I am confused which seam version should I use? Seam2 or Seam3? Thanks, Manoj
manojpardeshi111
  • 3,465
  • 2
  • 14
  • 8
0
votes
2 answers

Eclipse j2ee and bundled web tool platform confuses me

Hello good fellas i'm sure everybody is cool.I'm about to start a tutorial about jsp and jsf and the required tool is eclipse for j2ee and web tool platform.I'm a bit confused about where to find it bundled with wtp? and in which distribution is it…
black sensei
  • 6,528
  • 22
  • 109
  • 188
0
votes
1 answer

How to Pop-up/Alert in Seam? (Java)

Thanks for your time! I'm a Java developer that inherited an existing mostly-done Seam project (viewed with a browser) and am having a hard time tracing through where the errors are because I don't know how to send a message to the user (for…
Glenninator
  • 47
  • 1
  • 9
0
votes
1 answer

javax.ejb.NoSuchEJBException: Could not find stateful bean

I get the following error in my application: 2012-04-27 12:29:07,623 4540114 DEBUG [org.jboss.seam.jsf.SeamPhaseListener] (http-localhost%2F127.0.0.1-8080-3:) committing transaction after phase: INVOKE_APPLICATION 5 2012-04-27 12:29:07,623 4540114…
JenRajesh
  • 1
  • 1
  • 1
0
votes
1 answer

accessing request parameters from inside validator

Is there a proper way to access other form fields from inside a validator? Is there another solution than: context.getViewRoot().findComponent("formid:exampleField:example")? f.e I want to validate a city field inside a custom validator and…
Raffael Schmid
  • 329
  • 1
  • 7
0
votes
1 answer

"Target Unreachable, identifier 'authenticator' resolved to null" in SEAM

I am using jboss-seam-2.2.0.GA, authenticator class to authenticate the login process. When I enter the username and password and submit the page, I am getting following error message in my logs: application E javax.el.PropertyNotFoundException:…
Manohar
  • 11
  • 1
  • 4
0
votes
1 answer

"Cannot find child element" error when calling JBoss Web Service from Visual FoxPro

I'm having this problem. I created a Web Service that runs on top of JBoss 5, using the Seam Framework. The web service has a single method called "login". When I consume the service from a Java client, it works fine, but when I try to consume from…
jpangamarca
  • 713
  • 2
  • 13
  • 33
0
votes
1 answer

Action not triggered in seam

In my pages.xml file, I have this instruction: but it never gets triggered! My guestLogin.login looks like this: import org.jboss.seam.ScopeType; import…
0
votes
2 answers

Components with multiple roles in spring

in seam The @Role annotation lets us define an additional named role for a component, with a different scope — it lets us bind the same component class to different context variables. (Any Seam component instance may be bound to multiple context…
saeed
  • 61
  • 1
  • 4
0
votes
0 answers

Bean validation on JBoss seam and JPA (Hibernate)

I have created a custom constraint and only want that to be called at pre-persist moment. Also, I have created the validation group and set it in the persistence.xml file according to the specification. It seems that the validation is being called…
0
votes
1 answer

CDI lifecycle of bean, @Inject and params

The view and bean were working until I tried to fix non-standard names, and I've now broken the connection between the two. Oddly, the "back" button has the correct link, but content just doesn't show, nor log. Why doesn't Detail.getComments()…
Thufir
  • 8,216
  • 28
  • 125
  • 273