How to validate dates in JSF?
I’m using JSF Mojarra 2.3.17 and JRE 21.
My bean has a LocalDate variable and the following JSF page:
Why does JSF automatically generate names for html components and can this be overridden?
I’m reading up on JSF. One thing that I noticed is that tags such as h:inputText
and h:inputTextarea
auto-generate a random name.
Execute a Managed bean from a JSF view in WEB-INF folder
We are initiating a Spring + Primefaces project and the first problem we have encountered concerns storing the XHTML pages into the WEB-INF folder.
JSF best practice for binding UI components to backing bean?
In JSF is it ok to bind UI components to backing bean just to render messages or we should only bind when we need to do lot more than just rendering messages?
Record management system java web framework
We’re currently reconsidering technologies and frameworks to get more agile with “simple” RMS CRUD-based projects. In short, short-living things like this
Should a complex EL expression be replaced by a single javabean getter?
In JSF if I have a component that conditionally renders based on a number of variables what is the optimal way to handle the render statement… should the logic live in the component declaration or in some form of helper class?
In JSF where do objects like PhaseListeners fit in the MVC pattern?
When it comes to JSF, I’ve had trouble distinguishing where certain objects I create fit into the overall MVC pattern. The View is simple enough since that’s handled by the .xhtml template but when it comes to objects like:
Web application (Spring, JSF) forks, how to reuse existing code for subprojects?
my question is going to be somewhat philosophical and “architectural oriented” so bear with me.
Web application using JSF-Front end and node.js-Back end
I’m planning to build a eCommerce web application(similar to http://zovi.com/) using JSF 1.2 and node.js. All front end components will be jsf components binding to backing bean. I want to achieve real time functionality ( such as displaying Today’s hot sellers ,Customers who viewed this item also viewed such patterns) using node.js. And all data retrievals from database(MySQL)should be accomplished using node and display in JSF components. I’m confused in how to bind data that i get from node to corresponding managed bean property(since i bound it to corresponding JSF component).
How to execute code when user leaves the page, when their session ends, or if they close their browser [duplicate]
This question already has answers here: Doing something whenever user exits particular page (2 answers) Page unload event handling in JSF (1 answer) Closed 8 days ago. I have an older technology project that uses PrimeFaces 3.5 and Java EE. I am trying to implement a locking mechanism to prevent multiple users from editing the […]