Hi to all,
I would like to know how many j2ee patterns does struts framework make use of.
As far as I know, no one sat down with the book and said "let's use this one." I'll leave cataloging any which are in there as the result of good design practices up to someone else.
And also one more thing, I want to insert UNICODE data in Database, I've created the database with unicode support, what changes are needed on struts end to make the application in UNICODE .
There should be nothing specific to Struts about this. Take control of the encoding with which client pages submit requests (most consistently done by delivering the page with the same encoding that you want used for the form submission) and make sure your Servlet container knows the encoding (probably best done with a ServletFilter which calls request.setCharacterEncoding(...) before anything else happens). Besides dealing with the serialization of user request data into bytes, everything is Java, and therefore fundamentally Unicode.
Joe
--
Joe Germuska [EMAIL PROTECTED] http://blog.germuska.com "Narrow minds are weapons made for mass destruction" -The Ex
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]