JP Bar

Greenhorn
+ Follow
since Feb 17, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by JP Bar

Hi!, I've a form with a datatable with htmlinputtext and I want highlight particular fields in some rows. But I have to change the style without javascript, in the server.
For the rest of the form, I've no problem using viewroot.findComponent(":form:subview:idField") but with datalist or datatables I can't access to the rows with findComponent(":form:subview:idTable:numberOfRow:idField") always return null. I've been reading and I think rows aren't generated in server time?? or similar??? Perhaps I've to use another methods like invokeoncomponent or it's more simple?

Thanks in advance!
14 years ago
JSF
Hi!, I've a big project with WAS 6.1-JAVA 1.5-oracle with the next structure
-40 Projects (forms) very similar with similar querys, they only read from database (only select, nor update neither insert)
-1 Common project that manages all the database connections and is a shared library for the 40 projects.

My question is, which is the best method to cache those database connections?. I've one shared library for a lot of similar projects.
I've read a lot about cachedrowset, OSCache, spring, hibernate, JDBC Connection... but I think AOP like hibernate is not necessary, all the queries always return a pair value-key objects, what do you recommend me? I'm looking something that permits optimize database conection access more than object caching.

Thanks in advance!