Tagged Questions

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 fulfill some of missed features ...

learn more… | top users | synonyms

14
votes
12answers
5k views

How Popular is the Seam Framework

I'm using JBoss Seam Framework, but it's seems to me isn't very popular among java developers. I want to know how many java programmers here are using it, and in what kind of projects. Is as good as ...
13
votes
9answers
17k views

Which framework should I choose - Seam, Wicket, JSF or GWT?

I'm debating whether to use Seam, Wicket, JSF or GWT as the foundation for my presentation layer in a Java project. I narrowed my selection of Java web frameworks down to this subset based on job ...
9
votes
7answers
2k views

Are there any disadvantages to SEAM?

As a java web applications developer I have used this last year JSF (SUN) for a framework to my web applications. I have to say I quite liked using it, it makes the developing easier. Recently, I ...
8
votes
1answer
4k views

Mixing JSF EL in a Javascript file

I was wondering if anyone out there knew of a way to have EL expressions in included JavaScript files be evaluated by JSF. I was hoping that Seam might have a way around this but no luck so far. All I ...
8
votes
1answer
5k views

Do not understand passing parameters in seam

As I debug my seam application, it dawns on me that I don't really understand how parameter passing works. The following terminology really has me confused. So I am asking this very general question ...
7
votes
5answers
4k views

java library for reading RSS and ATOM feeds

I am looking for libraries which can read RSS / ATOM feeds in my J2EE application (based on JBoss Seam). Is Rome the only application there for reading feeds? I am assuming the Seam RSS integration ...
6
votes
2answers
2k views

Hibernate native query - char(3) column

I have a table in Oracle where column SC_CUR_CODE is CHAR(3) When I do: Query q2 = em.createNativeQuery("select sc_cur_code, sc_amount from sector_costs"); q2.setMaxResults(10); ...
6
votes
2answers
387 views

Aligning Menu Group to Menu Item

I'm using Seam and Richfaces to make a menu bar. The code is like this: <rich:dropDownMenu showDelay="250" hideDelay="0" submitMode="none"> <f:facet ...
6
votes
2answers
5k views

How to create dynamic JSF 1.2 form fields

We are using JSF 1.2 and Seam 2.2. I have found some similar questions like this one, however there are so many ways this can be done that it made me more confused. We are getting a XML file that we ...
6
votes
3answers
1k views

How to insert JSF page rendering time and response size into the page itself, at least partially?

I realize it's a chicken and egg problem and that it's not possible to accurately resolve the time it took to render a page (or the size of response) and insert that number into the page itself ...
6
votes
3answers
1k views

checks for constraint violation before persisting an entity

What is the best mechanism for preventing constraint violation checks before creation | modification of an entity? Suppose if the 'User' entity has 'loginid' as the unique constraint, would it be ...
6
votes
2answers
4k views

Maven To copy jar file from local folder

I am using seam to develop my application and running it on weblogic 10.1MP Using maven2 to build the application and did not find the jboss-seam-wls-compatible.jar file in any repository. In maven ...
6
votes
2answers
3k views

Disabling seam's redirect filter

I'm doing a project in seam that requires restful URLs. I have a view that is mapped to /group/{group}/{locale}. On that page I have a list of so called messages. Each message has a button to save ...
5
votes
1answer
179 views

Seam centralized exceptions

i'm using seam 2.2, primefaces as view presentation layer. I would write some kind of infrastructure in order to capture all exceptions. For example i put in a facelets following piece of code: ...
5
votes
2answers
1k views

JSF — <ui:repeat /> over a java.util.Set?

Does the <ui:repeat /> tag support iterating over a java.util.Set? I've tried iterating over my JPA domain entity objects contained in a Set, but receive errors. Is there something I'm ...
5
votes
1answer
2k views

How to externalize properties from JPAs persistence.xml?

I would like to put some of the hibernate configuration in a property file to make it editable without build and deploy. I tried to solve my problem by following the instructions from ...
5
votes
3answers
418 views

Learning Curves for Java Frameworks

We're considering experimenting with a new Java framework for building some internal web apps. We have a mixture of Perl/Ruby/Java programmers and are trying to standardize as much as possible. I'm ...
5
votes
2answers
850 views

Are there “server-side comments” in JSF / Seam / RichFaces?

With the JSF/Seam/RichFaces stack, is there a way to mark up comments (on XHTML pages) so that they will not be included in the HTML output? I.e., something like JSP's <%-- comments --%>, as ...
5
votes
5answers
193 views

Good book suggestions for building enterprise software

Enterprise software are built using technologies/softwares/terminologies/APIs such as EJB, JBoss, Seam, Hibernate(JPA), Maven, Eclipse, Spring, JTS, JMS, JNDI etc. I know there are great books out ...
5
votes
2answers
1k views

Hibernate: 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 A has a List< B > ...
5
votes
3answers
630 views

Is it possible to use Seam in a JBoss timed service?

I've started to write some new JBoss timed service that was meant to use some existing seam components. But it seems that I can't access these components because of non-existing contexts. Is it ...
5
votes
1answer
1k views

Has anyone successfully run integration tests with Jboss embedded, Seam and Maven?

Have been trying to get integration testing working with my seam project and the Jboss embedded container but am not having much success. Have been doing a lot of reading and have been trying what is ...
5
votes
7answers
2k views

JBoss Seam tutorials

Let's say that I'm new to JBoss Seam, is there a way to get my skills up to speed? Are there any good tutorials?
5
votes
4answers
4k views

Seam Problem: Could not set field value by reflection

I'm having a problem with my Seam code and I can't seem to figure out what I'm doing wrong. It's doing my head in :) Here's an excerpt of the stack trace: Caused by: ...
5
votes
3answers
5k views

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 ...
5
votes
2answers
10k views

Faces Servlet threw exception java.lang.StackOverflowError

Ok, I've run across my first StackOverflowError since joining this site, I figured this is a must post :-). My environment is Seam 2.0.1.GA, JBoss 4.2.2.GA and I'm using JSF. I am in the process of ...
4
votes
3answers
121 views

JBoss or Tomcat for Seam Application? And why?

We're about to deploy a Java web application built using JBoss Seam as the application framework. We'll be deploying in a clustered setup, as this is an e-commerce application and we're concerned ...
4
votes
2answers
1k views

Using a4j:support to update the model and view, ready for the next button/submit action

The Problem We have a swing based front end for an enterprise application and now are implementing a (for now simpler) JSF/Seam/Richfaces front end for it. Some of the pages include fields that, ...
4
votes
1answer
349 views

Iteration-scoped variable in JSF / Richfaces iteration?

OK, this should be an interesting one I think. I want to minimize the number of invocations to my Seam component inside an iteration. I am using Seam 2.2.1.CR1, Richfaces 3.3.3.Final, JSF 1.2 and ...
4
votes
5answers
288 views

How to escape “:”?

for example I have id like someform:somepanel:somebutton When I do jQuery("#someform:somepanel:somebutton") it returns someform, how to AUTOMATICALLY escape that id? EDIT: I want to do ...
4
votes
2answers
834 views

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 ...
4
votes
3answers
781 views

SEAM: Effective use of @BypassInterceptors?

I was wondering what advice the community could give me on the use of the @BypassInterceptors annotation when programming with Seam? I've been reading up on increasing Seam application performance, ...
4
votes
1answer
177 views

How to get permission's role with seam

I need in my application to get all permissions associated with a specific role with seam ? I tried with permissionManager.listPermissions but this method gives permissions associated with a specific ...
4
votes
1answer
807 views

JBoss Seam Design Patterns?

I've really taken a liking to the JBoss Seam application framework. Since the notion of injection/outjection and tight integration between JSF/EJBs/JPA is relatively scarce among Java application ...
4
votes
1answer
5k views

java.lang.NoSuchMethodException: org.hibernate.validator.ClassValidator Seam weblogic 10.3

I have a big problem with Hibernate (use with seam) on weblogic 10.3. When I publish my application, I get this error: java.lang.NoSuchMethodException: ...
4
votes
1answer
919 views

Inheritance mapping with JPA/Hibernate

This is a fairly lengthy (not overly complex) design question so please bear with me. I'm trying to implement a person/role management system with POJOs and JPA. I'm fairly new to ORM and this is ...
4
votes
3answers
389 views

JSF — Alternative to “rendered=”?

We're developing a Java web app that utilizes JSF (Richfaces through Seam) for its UI. I've read several articles that indicate that using the "rendered=" attribute on UI components results in a ...
4
votes
1answer
592 views

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 ...
4
votes
2answers
328 views

Seam app with JBoss 'minimal' Config?

I'd like to improve the performance of my Seam apps and JBoss appserver, particularly by removing things that aren't necessary in the standard configuration. Ideally, I'd like to be able to run it ...
4
votes
3answers
541 views

Where is JBoss Seam most popular

I have been using JBoss Seam now for over a year and still haven't seen much acceptance here in the US. My metrics are, the number of jobs that indicate JBoss Seam and number of people talking about ...
4
votes
3answers
1k views

Forcing a transaction to rollback on validation errors in Seam

Quick version: We're looking for a way to force a transaction to rollback when specific situations occur during the execution of a method on a backing bean but we'd like the rollback to happen without ...
4
votes
1answer
353 views

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 ...
4
votes
3answers
1k views

Hows does Seam injection work in Ejb3

We are using Seam 2.2.0 Java 1.6.14 Weblogic 10.3.1.0 (named 11g Doh!) I have looked at Seam reference Seam in action These web pages However I still do not understand how to inject an EJB3 ...
4
votes
3answers
2k views

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 ...
4
votes
2answers
565 views

Should I start my Seam project from scratch or from a seam-gen generated project?

I have been using Seam-gen with a small sample database to help me learn the Seam framework. Now I am going to build a more complex application. Are there disadvantages or things that I should watch ...
4
votes
2answers
5k views

Manual Transactions with Seam POJO

What is best practice for using Database Transactions with Seam when not using EJBs - ie. when deploying Seam as a WAR? By default Seam JavaBeans support Transactions. I can annotate a method with ...
4
votes
3answers
2k views

How do I prevent form resubmission in Seam?

I have a simple form that I don't want accidentally submitted multiple times. I can easily block the user from multiple clicks when they first see the page, but I have no control over them hitting ...
4
votes
2answers
976 views

Texturing error on a Sphere

I have a number of spherical longitude/latitude coordinates for points on a sphere that I need to visualize. For that purpose, I transformed the points to cartesian coordinates and built a mesh of ...
4
votes
3answers
2k views

Is RESTful JSF possible?

I recently sat down to port a simple Rails app I have to JSF (using Seam) to get a feel for which I would be more productive in. The Rails app is RESTful, which I like. Upon starting into JSF, I was ...
4
votes
5answers
15k views

How to conditionally style a row in a rich:dataTable

How can I change the style of a particular row based on a condition? I can use JSF EL in rich:column style class attribute, but I have to write for each column. I want to change the entire row. ...

1 2 3 4 5 19