Thx Jeremy,
Any pointers to tutorial/example of building ELResolver (and hook it in with spring)?
TIA
Chuck
Type: Posts; User: Chuck Zheng; Keyword(s):
Thx Jeremy,
Any pointers to tutorial/example of building ELResolver (and hook it in with spring)?
TIA
Chuck
Hi there,
In the following code I'm trying to pass java constant java.util.Locale.ENGLISH to a spring bean method repoLocalized.findAll(Locale locale):
<on-start>
<evaluate...
I found out from SWF forum that OpenSessionInView will not help SWF case which has several redirects. So I need to use SWF's <persistence-context/> instead. see this thread:...
Hi there,
I'm using OpenSessionInViewInterceptor, but I still get LazyInitializationException.
I am trying to build a pet project with Hibernate + Spring + SWF + JSF (Rich Faces) dealing...
Hi JTigger,
I'm using OpenSessionInViewInterceptor, but I still get LazyInitializationException.
I am trying to build a pet project with Hibernate + Spring + SWF + JSF (Rich Faces) dealing...
That's what I thought. But I've been searching it all around the SWF site and could not find any. really appreciate anyone from SWF team can help
When you say " ... You can however, define two flows in the same web application, under the same dispatcher servlet, one using plain JSP flows and the other using JSF flows."
Do you mean other JSF...
Help - can someone show me a working example of SpringFaces using JSP as view instead of facelets?
TIA
chuck
hi nkaza,
do you get any answer to your question? I've just posted some similar question yesterday.
thx
chuck
Hi there,
I know the SpringTravel is a good example, but it uses facelets/xhtml. Is there a working example using SpringFaces + JSP? If yes, where can I download its source?
thx
chuck
Hi there,
I'm trying to use spring faces' commandButton in the following JSP:
...
<%@ taglib uri="/WEB-INF/lib/spring-faces.tld" prefix="sf"%>
...
Hi,
I'm trying to to adapt my simplest working SWF + JSP code to SpringFace + JSP. The page renders fine, but the request does not send _eventId as it used to do in SWF+JSP (which I put in the...
When I try to login to:
http://richweb.springframework.org/swf-booking-faces/spring/login
I got:
HTTP Status 404 - /swf-booking-faces/spring/WEB-INF/flows/main.xhtml
type Status report
what is dataModel, who creates it and how is it used? where I can find more doucmentation about it?
Hi there,
I am just interested in doing a tally to see what different web technology you have used with spring in your projects (if you can also share what works well, what does not, what you...
What is your BusinessObject?
- Are they like Order, Invoice, Item?
- Are they managed by spring?
- who is managing relationships among Order and Item? spring's dependency injection or ORM - like...
Thx a lot for informative replys. I will get a copy of DDD to further study the Service concept - I've read Martin Fowler's Patterns of Enterprise Application Architecture in which he is not so sure...
Hi there,
I am evaluating how to move our web-based EJB2-backed enterprise OLTP app to Spring/Hibernate/JSF. we have over 200 tables/entities supporting thousands of concurrent users processing...
so I take your domain objects are not spring beans. I guess your DAO is still singlton spring bean. if so, if its biz logic need to perform a lookup on other domain objects (as opposed to...
After reading the thread with great interest. I see many different opinions and still not sure about how to impl domain model with spring. I have following questions:
1. should domain object...
So do you implement Domain Object as Spring bean? If so, I assume they are not singleton. Are they prototype beans?
If I need to model Order has many LineItems and LineItem refer to a Product....
Has anyone build a JSF UI for spring app? I am interested in building one for petclinic example. Any advise how should I start? tips? warnings?
Thanks in advance
chuck
So does this mean the hibernate session to DB is open by default and usable by view when rendering its contents.
What if a DB access error occurs during the rendering phase?
cheers
chuck
...
Hi there,
In petclinic, HibernateClinic.loadOwner only loads Owner. When owner.jsp display pets. Does Hibernate loads Pets for UI at that time? or loadOwner() method "eagerly" loaded magically?...
Hi there,
I've just started playing with Spring, and I look into the petclinic example that came as part of the distribution and followed Ken Kreb's write-ups about it on the spring site. I am...