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

Remove cid variable from URL in jsf

I am using JSF and want to remove/hide cid variable from url which is getting appended in url ? ex. https://1.2.3.4/login.xhtml?cid=33
-2
votes
1 answer

seam-gen and flex

I have integrated seam and flex with FlamingoDS I got html file from mxml file and I stored it in WebContent folder it's fine then I want to create link named as 'Plan' in menu.xhtml My aim is to get that html file when i clicked on this button I…
venky
  • 1
  • 1
-3
votes
1 answer

How to resolve an exception related to rest api POST request?

I have a call from angular 5 app: const httpOptions = { headers: new HttpHeaders({ 'Accept': 'application/json', 'Content-Type': 'application/json' }) }; ... addTrip(trip: Trip): Observable { return…
user2304483
  • 1,462
  • 6
  • 28
  • 50
-3
votes
2 answers

ORA-02292 Constraint violation - child records found

parent entity is consits of many to may relation when ever i deleted the parent Id I give the excetion is ORA-02292 Constraint violation - child records found. My Entity : @Entity @Table(name = "MOBEE_AGENCY") public class MobeeAgency implements…
nag
  • 647
  • 6
  • 25
  • 43
-4
votes
1 answer

Control Seam based website from Java code

I'm working on a Java application that need's to be able to connect to my University's websites containing my student information. I'm not exactly sure how to go about doing this as the websites framework is Seam which I don't have any experience…
-5
votes
2 answers

i got this exception while deploying seam application,

Problem starting service jboss.j2ee:ear=registration-ear.ear,jar=jboss-seam.jar,name=TimerServiceDispatcher,service=EJB3 java.lang.NullPointerException at…
pavan
  • 13
  • 1
  • 6
1 2 3
91
92