User kosoant - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:25:08Z http://stackoverflow.com/feeds/user/15114 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/553749/spring-mvc-webapp-where-to-store-paths-to-common-images 0 Spring MVC Webapp: Where to store paths to common images? kosoant 2009-02-16T15:49:18Z 2009-10-06T20:58:04Z <p>I'm building a Spring MVC web application with Tiles/JSP as the view technology. Previously I stored the paths to common images in class Common:</p> <pre><code> public final static String IMG_BREADCRUMBS_NEXT = "/shared/images/famfam/bullet_arrow_right.png"; </code></pre> <p>Then I would use this class in jsp to get the image src like</p> <pre><code> &lt;img src="&lt;%= Common.IMG_BREADCRUMBS_NEXT %&gt;"/&gt; </code></pre> <p>I would like to get rid of scriptlets in my jsp code and use jstl etc. instead. What is the best way to store this kind of information? Is it resource bundles? How have you solved this?</p> http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps 22 How to get UTF-8 working in java webapps? kosoant 2008-09-26T11:48:09Z 2009-09-18T19:32:03Z <p>I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.</p> <p>My setup is the following:</p> <ul> <li>Development encironment: Windows XP</li> <li>Production encironment: Debian</li> </ul> <p>Database used: MySQL 5.x</p> <p>Users mainly use Firefox2 but also Opera 9.x, FF3, IE7 and Google Chrome are used to access the site.</p> <p>How to achieve this?</p> http://stackoverflow.com/questions/139097/how-do-you-waste-work-time-ie-procrastinate 2 How do you waste work time ie procrastinate? [closed] kosoant 2008-09-26T12:26:47Z 2009-08-03T13:07:11Z <p>What are the different ways that you waste the time that you could be working on something (subjectively) more important ie. how do you procrastinate as a programmer/software engineer?</p> http://stackoverflow.com/questions/600095/splitting-applicationcontext-to-multiple-files 1 Splitting applicationContext to multiple files kosoant 2009-03-01T16:57:10Z 2009-07-27T20:01:36Z <p>What is the correct way to split Spring's configuration to multiple xml files? At the moment I have</p> <ul> <li>/WEB-INF/foo-servlet.xml</li> <li>/WEB-INF/foo-service.xml</li> <li>/WEB-INF/foo-persistence.xml</li> </ul> <p>My web.xml has the following:</p> <pre><code>&lt;servlet&gt; &lt;description&gt;Spring MVC Dispatcher Servlet&lt;/description&gt; &lt;servlet-name&gt;intrafest&lt;/servlet-name&gt; &lt;servlet-class&gt; org.springframework.web.servlet.DispatcherServlet &lt;/servlet-class&gt; &lt;init-param&gt; &lt;param-name&gt;contextConfigLocation&lt;/param-name&gt; &lt;param-value&gt; /WEB-INF/foo-*.xml &lt;/param-value&gt; &lt;/init-param&gt; &lt;load-on-startup&gt;2&lt;/load-on-startup&gt; &lt;/servlet&gt; &lt;context-param&gt; &lt;param-name&gt;contextConfigLocation&lt;/param-name&gt; &lt;param-value&gt; /WEB-INF/foo-*.xml &lt;/param-value&gt; &lt;/context-param&gt; &lt;listener&gt; &lt;listener-class&gt; org.springframework.web.context.ContextLoaderListener &lt;/listener-class&gt; &lt;/listener&gt; </code></pre> <p>The actual questions:</p> <ul> <li>Is this approach "correct"/"best"?</li> <li>Do I really need to specify the config locations both in the DispatcherServlet AND the context-param sections?</li> </ul> <p>What do I need to keep in mind to be able to reference beans defined in foo-servlet.xml from foo-service.xml? Does this have something to do with specifying contextConfigLocation in web.xml?</p> <p>Update 1:</p> <p>I'm using Spring framework 3.0. I'ts my understanding that I don't need to do resource importing like </p> <pre><code> &lt;import resource="foo-services.xml"/&gt;". </code></pre> <p>Is this a correct assumption?</p> http://stackoverflow.com/questions/722448/how-to-avoid-copying-40m-of-java-libs-within-a-war-when-the-wars-size-is-41m 2 How to avoid copying 40M of java lib's within a WAR when the WAR's size is 41M? kosoant 2009-04-06T17:37:52Z 2009-07-09T14:33:08Z <p>At the moment my build process consists of repackaging the war file with all required java libraries under WEB-INF/lib and then copying the war file to development/demo/production server to be redeployed by tomcat. </p> <p>The packaged war file's size is about 41M and it has at the moment something like 40M of external java libraries. There has to be a better way. How have you solved this issue? </p> <p>My development machine is a windows box with Eclipse as my IDE and Ant as my build tool. The servers are all linux boxes with Tomcat 5.5. </p> <p>Should I maybe add the jar files to the war package at server side?</p> http://stackoverflow.com/questions/986094/jpa-native-query-for-longtext-field-in-a-mysql-view-results-in-error 1 JPA native query for LONGTEXT field in a MySQL view results in error kosoant 2009-06-12T11:00:36Z 2009-06-12T11:00:36Z <p>Hi,</p> <p>I have the following JPA SqlResultSetMapping:</p> <pre><code> @SqlResultSetMappings({ @SqlResultSetMapping(name="GroupParticipantDTO", columns={ @ColumnResult(name="gpId"), @ColumnResult(name="gpRole"), // @ColumnResult(name="gpRemarks") } ) </code></pre> <p>Which is used like this:</p> <pre><code> StringBuilder sbQuery = new StringBuilder("Select "); sbQuery.append(" gpId, "); sbQuery.append(" gpRole, "); // sbQuery.append(" gpRemarks "); sbQuery.append(" FROM v_group_participants_with_details "); Query query = em.createNativeQuery(sbQuery.toString(), "GroupParticipantDTO"); </code></pre> <p>The view is like this:</p> <pre><code>DROP VIEW IF EXISTS `v_group_participants_with_details`; CREATE VIEW `v_group_participants_with_details` AS SELECT gp.id AS gpId, gp.role AS gpRole, gp.remarks AS gpRemarks FROM GroupParticipation gp ; </code></pre> <p>The GroupParticipation table has the remarks column defined as LONGTEXT (I'm using Mysql 5.x)</p> <p>Now for the problem: When the remarks field is commented out from the query everything works perfectly, but if I try to include the remarks field in the query, I get the following error:</p> <pre><code> javax.persistence.PersistenceException: org.hibernate.MappingException: No Dialect mapping for JDBC type: -1 at org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException (AbstractEntityManagerImpl.java:614) at org.hibernate.ejb.QueryImpl.getResultList(QueryImpl.java:76) </code></pre> <p>What gives? How can I get a LONGTEXT column from a native query?</p> http://stackoverflow.com/questions/943255/weird-access-question/943316#943316 4 Answer by kosoant for Weird Access Question kosoant 2009-06-03T06:19:30Z 2009-06-03T06:19:30Z <p>Intall VMWare on your machine, then create a new virtual machine with the necessary software installed. That way your main system stays.</p> http://stackoverflow.com/questions/876528/best-way-to-set-html-head-title-in-a-springtiles2-application 0 Best way to set HTML head title in a Spring+Tiles2 application? kosoant 2009-05-18T07:03:35Z 2009-05-18T07:03:35Z <p>I have a usability problem in my Spring webapp which uses Tiles as the view technology. At the moment all of the pages display the same <code>HEAD_TITLE</code> and the <code>PAGE_TITLE</code> is page specific:</p> <pre><code> &lt;html&gt; &lt;head&gt;&lt;title&gt;HEAD_TITLE&lt;/title&gt;&lt;/head&gt; &lt;body&gt; &lt;h1&gt;PAGE_TITLE&lt;/h1&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>This is a major usability problem as the browsers history lists all different pages of the application with the same title. The reason why the <code>HEAD_TITLE</code> is same for all pages is that I haven't found a reasonable way to use the <code>PAGE_TITLE</code> as the <code>HEAD_TITLE</code>.</p> <p>In most cases the <code>PAGE_TITLE</code> comes from a message bundle with <code>&lt;fmt:message /&gt;</code> tag and some parameters are passed to it. The Tiles layout is such that the <code>HEAD_TITLE</code> should be already set at that point because all pages of the webapp use the same common layout which defines the <code>&lt;HEAD&gt;</code> elements of the pages amongst other stuff.</p> <p>Any suggestions how to fix this usability problem? Should I set a "pageTitle" request attribute in my Spring controllers for all pages and use that as the <code>PAGE_TITLE</code> and also as the <code>HEAD_TITLE</code>? Or is it possible to somehow set the HEAD_TITLE in the page specific JSP?</p> http://stackoverflow.com/questions/847372/how-to-inject-messagesource-to-a-view-extending-abstractview 0 How to inject MessageSource to a View extending AbstractView kosoant 2009-05-11T09:33:32Z 2009-05-14T10:44:55Z <p>I have a view class that extends AbstractExcelView</p> <pre><code>public class ExportExcelParticipantsView extends AbstractExcelView { ... } </code></pre> <p>I would like to inject a MessageSource to this bean. Is this possible?</p> <p>I use a ResourceBundleViewResolver to resolve views (in this case)</p> <pre><code>&lt;bean id="resourceBundleViewResolver" class="org.springframework.web.servlet.view.ResourceBundleViewResolver"&gt; &lt;!-- Classpath needs to have views.properties --&gt; &lt;property name="basename" value="views" /&gt; &lt;!-- This view resolver is the first one used --&gt; &lt;property name="order" value="0"/&gt; &lt;property name="defaultParentView" value="parent-view"/&gt; &lt;/bean&gt; </code></pre> <p>Is it so that this view class is instantiated each time the view is requested and thus injecting a message source to this class is harder than usual? Is it even possible? </p> <p>At the moment I pass the MessageSource as a model attribute from the controller to the view. Is it possible to avoid this? </p> http://stackoverflow.com/questions/861663/where-can-i-get-a-good-guideline-suggestion-on-designing-a-complex-website/861821#861821 0 Answer by kosoant for Where can i get a good guideline/suggestion on designing a complex website? kosoant 2009-05-14T06:19:10Z 2009-05-14T06:19:10Z <p>You're facing a very hard issue. I've struggled with this same problem many times. I don't know about PHP frameworks, but to my knowledge no Java web app framework has out-of-the-box solutions for the eterprise-y issues like breadcrumbs and common/area/page specific navigation etc.</p> <p>What I've found helpful is Web App "design patterns" and Look and Feel guidelines. The one's I've found most useful are:</p> <ul> <li><a href="http://developer.yahoo.com/ypatterns/" rel="nofollow">YAHOO Design Pattern Library: <a href="http://developer.yahoo.com/ypatterns/" rel="nofollow">http://developer.yahoo.com/ypatterns/</a></a></li> <li><a href="http://www.oracle.com/technology/tech/blaf/index.html" rel="nofollow">Oracle's Browser Look and Feel guidelines: <a href="http://www.oracle.com/technology/tech/blaf/index.html" rel="nofollow">http://www.oracle.com/technology/tech/blaf/index.html</a></a></li> </ul> <p>Googling yields many similar "handbooks".</p> <p>The most useful Color picking tool's I've used have been</p> <ul> <li><a href="http://design.geckotribe.com/colorwheel/" rel="nofollow">Javascript Color Wheel: <a href="http://design.geckotribe.com/colorwheel/" rel="nofollow">http://design.geckotribe.com/colorwheel/</a></a></li> <li><a href="http://h41139.www4.hp.com/uk/en/online%5Ftools/colour%5Fwheel.html" rel="nofollow">HP UK Colour wheel: <a href="http://h41139.www4.hp.com/uk/en/online_tools/colour_wheel.html" rel="nofollow">http://h41139.www4.hp.com/uk/en/online_tools/colour_wheel.html</a></a></li> </ul> http://stackoverflow.com/questions/553749/spring-mvc-webapp-where-to-store-paths-to-common-images/856275#856275 1 Answer by kosoant for Spring MVC Webapp: Where to store paths to common images? kosoant 2009-05-13T05:55:10Z 2009-05-13T05:55:10Z <p>In the end I used Spring's theme support to achieve what I wanted. In my view code I use the <code>&lt;spring:theme code=""/&gt;</code> tag to get the path to image file:</p> <pre><code> &lt;img src="&lt;spring:theme code="theme.images.actions.edit.link"/&gt;" /&gt; </code></pre> <p>This tag behaves like any <code>&lt;fmt:message&gt;</code> or <code>&lt;spring:message&gt;</code> tag, but it has its own "message bundles". The necessary configurations in my applicationContext are:</p> <pre><code> &lt;!-- ========================================================= Themes ========================================================= --&gt; &lt;bean id="themeResolver" class="org.springframework.web.servlet.theme.SessionThemeResolver"&gt; &lt;property name="defaultThemeName" value="themes.default"/&gt; &lt;/bean&gt; &lt;bean id="themeSource" class="org.springframework.ui.context.support.ResourceBundleThemeSource" /&gt; </code></pre> <p>All themes of my application are stored under <code>/WEB-INF/classes/themes/</code>. The default theme properties are in <code>/WEB-INF/classes/themes/default.properties</code> It looks like this:</p> <pre><code> ... theme.images.actions.show.link=/@contextPath@/shared/images/famfam/zoom.png theme.images.actions.delete.link=/@contextPath@/shared/images/famfam/cross.png ... </code></pre> <p>To change the theme (and icons) of my app I use a ThemeChangeInterceptor (in applicationContext)</p> <pre><code>&lt;!-- ========================================================= Theme resolving ========================================================= --&gt; &lt;bean id="themeChangeInterceptor" class="org.springframework.web.servlet.theme.ThemeChangeInterceptor"&gt; &lt;property name="paramName" value ="theme" /&gt; &lt;/bean&gt; </code></pre> <p>This enables the user to switch the theme via a <code>"&amp;theme=themes.default"</code> or <code>"&amp;theme=themes.alternative"</code> request parameter.</p> <p>One key part of my setup is the <code>@contextPath@</code> in the theme properties file. This is replaced during the Ant build process with the correct context path for development/testing/production environment. The key part of my build.xml is:</p> <pre><code> &lt;!-- copy all common themes to classes --&gt; &lt;copy todir="${build.war}/WEB-INF/classes/themes" overwrite="true" filtering="true"&gt; &lt;fileset dir="resources/themes" includes="**/*.properties" /&gt; &lt;filterchain&gt; &lt;replacetokens&gt; &lt;token key="contextPath" value="${setup.contextPath}"/&gt; &lt;/replacetokens&gt; &lt;/filterchain&gt; &lt;/copy&gt; </code></pre> <p>I hope this gives you a "running start" on Spring web app themes. In my opinion this setup makes it quite easy to alter the look and feel of an application.</p> <p>References:</p> <ul> <li>Spring themes: <a href="http://static.springframework.org/spring/docs/3.0.x/spring-framework-reference/html/ch16s07.html" rel="nofollow">http://static.springframework.org/spring/docs/3.0.x/spring-framework-reference/html/ch16s07.html</a></li> <li>FamFam icons: <a href="http://www.famfamfam.com/lab/icons/silk/" rel="nofollow">http://www.famfamfam.com/lab/icons/silk/</a></li> <li>Ant copy task: <a href="http://ant.apache.org/manual/CoreTasks/copy.html" rel="nofollow">http://ant.apache.org/manual/CoreTasks/copy.html</a></li> </ul> http://stackoverflow.com/questions/823546/can-anyone-recommend-an-off-the-shelf-acl-java-lib/823581#823581 2 Answer by kosoant for can anyone recommend an off the shelf ACL java lib? kosoant 2009-05-05T06:15:55Z 2009-05-05T06:15:55Z <p>Spring Security (formerly Acegi) will be the one most people recommend. In the end I found it very hard to setup up the way I wanted it to behave. Mainly because I didn't want to check access against the role of a user. What I wanted was user's who belong to user groups (ie. have roles) which then have "permissions" and access is checked against a "Permission", not a role (user group). </p> http://stackoverflow.com/questions/703043/eclipse-turn-an-existing-project-into-a-jpa-project/734670#734670 0 Answer by kosoant for Eclipse + Turn an Existing Project into a JPA Project kosoant 2009-04-09T15:13:06Z 2009-04-09T15:13:06Z <p>Modifying the .project file by hand is the best way to add different "natures" to an Eclipse project. Like ptyx said: compare your current .project file to that of a project where the nature is what you want and merge the differences.</p> http://stackoverflow.com/questions/599911/what-do-you-use-to-minimize-and-compress-javascript-libraries/600038#600038 3 Answer by kosoant for What do you use to minimize and compress JavaScript libraries? kosoant 2009-03-01T16:19:23Z 2009-03-01T16:19:23Z <p>I too use YUI Compressor. I have an ant task like this that I use in my projects:</p> <pre><code>&lt;!-- YUI Compressor tasks http://www.julienlecomte.net/yuicompressor/README --&gt; &lt;property name="yuicompressor.jar" value="C:/devlibs/yuicompressor-2.2.4/build/yuicompressor-2.2.4.jar"/&gt; &lt;target name="js.compress"&gt; &lt;!-- Create min directory under js direcrtory if it doesnt exist --&gt; &lt;mkdir dir="${js-directory}/min" /&gt; &lt;apply verbose="true" executable="java" parallel="false" failonerror="true"&gt; &lt;fileset dir="${js-directory}" includes="*.js"/&gt; &lt;arg line="-jar"/&gt; &lt;arg path="${yuicompressor.jar}"/&gt; &lt;srcfile/&gt; &lt;arg line="-o"/&gt; &lt;mapper type="glob" from="*.js" to="${js-directory}/min/*-min.js"/&gt; &lt;targetfile/&gt; &lt;/apply&gt; &lt;/target&gt; </code></pre> http://stackoverflow.com/questions/553429/how-to-eagerly-fetch-a-single-default-entity-from-a-collection-in-ejb3-jpa 0 How to eagerly fetch a single "default" entity from a collection in EJB3/JPA kosoant 2009-02-16T14:14:16Z 2009-02-17T17:24:17Z <p>I have a Person entity with multiple phone numbers. </p> <pre><code> @OneToMany(mappedBy="person", cascade=CascadeType.ALL) public Set&lt;PhoneNumberOfPerson&gt; getPhoneNumbers() { return phoneNumbers; } </code></pre> <p>Now I would like to implement a "get default phone number" method for Person that is eagerly fetched. This default phone number is one of the phone numbers in the phoneNumbers set. Is there any way to do this?</p> <p>The reason I'm trying to implement this is to have this default phone number listed on a page that lists "all" of the persons in the db. </p> <p>As a JPA beginner I initially tried it with the following method:</p> <pre><code>@Transient public PhoneNumberOfPerson getDefaultPhoneNumber(){ if(this.getPhoneNumbers().size()==0) return null; return this.getPhoneNumbers().iterator().next(); } </code></pre> <p>But this of course resulted in a very very slow listing page.</p> <p>So is there any way to define a transient property that gets a single entity from a collection of entities based on some query? I'm using Hibernate as my persistence provider.</p> http://stackoverflow.com/questions/222019/how-to-use-mysql-prepared-statement-caching/374372#374372 0 Answer by kosoant for How to use MySQL prepared statement caching? kosoant 2008-12-17T12:17:16Z 2008-12-17T12:17:16Z <p>You should prepare the statement outside the loop.</p> <pre><code>Connection conn = DatabaseUtil.getConnection(); PreparedStatement stmtUpdate = conn.prepareStatement("UPDATE foo SET bar=? WHERE id = ?); for(int id=0; id&lt;10; id++){ stmtUpdate.setString(1, "baz"); stmtUpdate.setInt(2, id); int rows = stmtUpdate.executeUpdate(); // Clear parameters for reusing the preparedStatement stmtUpdate.clearParameters(); } conn.close(); </code></pre> <p>I don't know about mysql caching prepared statements, but this is the way JDBC prepared statements are supposed to be reused.</p> http://stackoverflow.com/questions/161003/dynamic-breadcrumb-generation-how-to-do 2 Dynamic breadcrumb generation - how to do? kosoant 2008-10-02T05:29:06Z 2008-11-10T14:59:34Z <p>I'm in the early phases of developing a brand spanking new site with Spring + Tiles. The site needs dynamically generated breadcrumbs.</p> <p>What I mean by dynamic is that the user may reach a certain site from multiple starting points. If I have views for Customers, Orders and Products, the user could reach a Product directly:</p> <pre><code>Products -&gt; Product xyz </code></pre> <p>or the user could reach a product through a customer's order:</p> <pre><code>Customers -&gt; John Doe -&gt; Orders -&gt; Order 123 -&gt; Product xyz </code></pre> <p>What is the best way to achieve breadcrumbs like these in a java environment? I've previously done this by using a request attribute (a Vector of Url objects) that is filled with the Urls in each action/servlet of my webapp (like in the action List of Products). I'm not happy with this solution as it requires adding code to each controller/action for generating the breadcrumb trail. And in a case like viewing a product of given order of given customer, the if-then-else logic needed to determine the trail is awful.</p> <p>Are there any libraries that I could use?</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/177409#177409 5 Answer by kosoant for What real life bad habits has programming given you? kosoant 2008-10-07T06:45:52Z 2008-10-15T15:56:17Z <p>I've become a UI/usability fanatic:</p> <p>One of the local Finnish gas (petrol, whatever) stations was acquired by another. All was well until they changed the credit card payment systems of the gas pumps. Previously the process went like: </p> <ul> <li>1) Credit card in, </li> <li>2) enter pin number (4 numbers) on a numeric keyboard just to the right of the credit card slot, </li> <li>3) select pump by pressing the left or the right flashing button to select the left or the right pump (from the perspective where I'm standing)</li> <li>4) credit card pops out</li> <li>5) start pumping</li> </ul> <p>Now it's like this:</p> <ul> <li>1) Card in</li> <li>2) Enter pin number</li> <li>3) wait while nothing happens</li> <li>4) Realize that i have to press a friggin' OK button to proceed</li> <li>5) Select a pump by entering its number on a separate numeric keyboard that's located on top of the payment interface. To enter the correct pump number I have to check what the number is on the pump.</li> <li>6) Credit card pops out</li> <li>7) Star pumping</li> </ul> <p>Way to f'n design an interface!</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/177387#177387 0 Answer by kosoant for What real life bad habits has programming given you? kosoant 2008-10-07T06:28:39Z 2008-10-07T06:28:39Z <p>When I heard a discussion on social security numbers in a movie my brain immediately started thinking on how the validation of such a numbre should be done in an application. </p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/177382#177382 4 Answer by kosoant for What real life bad habits has programming given you? kosoant 2008-10-07T06:26:07Z 2008-10-07T06:26:07Z <p>When my wife asks me to take the dishes out of the washing machine I usually do that. As a result of me doing what she asked for she gets annoyed. Why? Because when she asks me to "take the dishes out of the washing machine" she means "pleas do that <b>AND put new dishes in AND clean the surfaces around the sink</b>". So programming has resulted in me processing every request quite literally.</p> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/177360#177360 12 Answer by kosoant for What's the most egregious pop culture perversion of programming? kosoant 2008-10-07T06:11:12Z 2008-10-07T06:11:12Z <p>Definately <b>Swordfish</b>! 3D hacking? Come on! Programming/hacking is done by spinning 3D blocks around on a display? Come on! And all this while getting a blowjob from a hot chick... </p> http://stackoverflow.com/questions/139097/how-do-you-waste-work-time-ie-procrastinate/139103#139103 11 Answer by kosoant for How do you waste work time ie procrastinate? kosoant 2008-09-26T12:27:51Z 2008-09-26T12:27:51Z <p>I myself tend to read books on some advanced programming techniques or anything programming related when I really should be coding the functionality wanted by my boss/customers.</p> http://stackoverflow.com/questions/138508/mvc-where-do-the-classes-go/138595#138595 4 Answer by kosoant for MVC, where do the classes go? kosoant 2008-09-26T10:08:51Z 2008-09-26T12:16:14Z <p>Model is the wrong word to use when discussing what to do with products: each product is a <b>value object (VO)</b> (or data transfer objet/DTO, whatever fits in your mouth better). Value objects generally have the same fields that a table contains. In your case ProductVO should have the fields that are in Products table.</p> <p>Model is a <b>Data Access Object (DAO)</b> that has methods like</p> <pre><code>findByPk --&gt; returns a single value object findAll --&gt; returns a collection of value objects (0-n) etc. </code></pre> <p>In your case you would have a ProductDAO that has something like the above methods. This ProductDAO would then return ProductVO's and collections of them.</p> <p>Data Access Objects can also return <b>Business Objects (BO)</b> which may contain multiple VO's and additional methods that are business case specific. </p> <p>Addendum: In your controller you call a ProductDAO to find the products you want. The returned ProductVO(s) are then passed to the view (as request attributes in Java). The view then loops through/displays the data from the productVO's.</p> http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps/138950#138950 30 Answer by kosoant for How to get UTF-8 working in java webapps? kosoant 2008-09-26T11:48:24Z 2008-09-26T12:07:53Z <p><em>Answering myself as the FAQ of this site encourages it. This works for me: </em></p> <p>Mostly characters äåö are not a problematic as the default character set used by browsers and tomcat/java for webapps is latin1 ie. ISO-8859-1 which "understands" those characters.</p> <p>To get UTF-8 working under Java+Tomcat+Linux/Windows+Mysql requires the following:</p> <h2>Configuring Tomcat's server.xml</h2> <p>It's necessary to configure that the connector uses UTF-8 to encode url (GET request) parameters:</p> <pre><code>&lt;Connector port="8080" maxHttpHeaderSize="8192" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" compession="on" compressionMinSize="128" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html,text/xml,text/plain,text/css,text/ javascript,application/x-javascript,application/javascript" URIEncoding="UTF-8" /&gt; </code></pre> <p>The key part being <b>URIEncoding="UTF-8"</b> in the above example. This quarantees that Tomcat handles all incoming GET parameters as UTF-8 encoded. As a result, when the user writes the following to the address bar of the browser:</p> <pre><code> https://localhost:8443/ID/Users?action=search&amp;name=*ж* </code></pre> <p>the character ж is handled as UTF-8 and is encoded to (usually by the browser before even getting to the server) as <b>%D0%B6</b>.</p> <p><i>POST request are not affected by this.</i></p> <h2> CharsetFilter </h2> <p>Then it's time to force the java webapp to handle all requests and responses as UTF-8 encoded. This requires that we define a character set filter like the following:</p> <pre><code> package fi.foo.filters; import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; public class CharsetFilter implements Filter { private String encoding; public void init(FilterConfig config) throws ServletException { encoding = config.getInitParameter("requestEncoding"); if( encoding==null ) encoding="UTF-8"; } public void doFilter(ServletRequest request, ServletResponse response, FilterChain next) throws IOException, ServletException { // Respect the client-specified character encoding // (see HTTP specification section 3.4.1) if(null == request.getCharacterEncoding()) request.setCharacterEncoding(encoding); /** * Set the default response content type and encoding */ response.setContentType("text/html; charset=UTF-8"); response.setCharacterEncoding("UTF-8"); next.doFilter(request, response); } public void destroy(){} } </code></pre> <p>This filter makes sure that if the browser hasn't set the encoding used in the request, that it's set to UTF-8. </p> <p>The other thing done by this filter is to set the default response encoding ie. the encoding in which the returned html/whatever is. The alternative is to set the response encoding etc. in each controller of the application. </p> <p>This filter has to be added to the <b>web.xml</b> or the deployment descriptor of the webapp:</p> <pre><code> &lt;!--CharsetFilter start--&gt; &lt;filter&gt; &lt;filter-name&gt;CharsetFilter&lt;/filter-name&gt; &lt;filter-class&gt;fi.foo.filters.CharsetFilter&lt;/filter-class&gt; &lt;init-param&gt; &lt;param-name&gt;requestEncoding&lt;/param-name&gt; &lt;param-value&gt;UTF-8&lt;/param-value&gt; &lt;/init-param&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;CharsetFilter&lt;/filter-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/filter-mapping&gt; </code></pre> <p>The instructions for making this filter are found at the <a href="http://wiki.apache.org/tomcat/Tomcat/UTF-8" rel="nofollow">tomcat wiki (<a href="http://wiki.apache.org/tomcat/Tomcat/UTF-8" rel="nofollow">http://wiki.apache.org/tomcat/Tomcat/UTF-8</a>)</a> </p> <h2> JSP page encoding </h2> <p>All JSP-pages of the webapp need to have the following at the top of them:</p> <pre><code> &lt;%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%&gt; </code></pre> <p>If some kind of a layout with different JSP-fragments is used, then this is needed in <b>all</b> of them.</p> <h2> HMTL-meta tags </h2> <p>JSP page encoding tells the JVM to handle the characters in the JSP page in the correct encoding. Then it's time to tell the vrowser in which encoding the html page is:</p> <p>This is done with the following at the top of each xhtml page produced by the webapp:</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fi"&gt; &lt;head&gt; &lt;meta http-equiv='Content-Type' content='text/html; charset=UTF-8' /&gt; ... </code></pre> <h2> JDBC-connection </h2> <p>When using a db, it has to be defined that the connection uses UTF-8 encoding. This is done in <b>context.xml</b> or wherever the JDBC connection is defiend as follows: </p> <pre><code> &lt;Resource name="jdbc/AppDB" auth="Container" type="javax.sql.DataSource" maxActive="20" maxIdle="10" maxWait="10000" username="foo" password="bar" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/ ID_development?useEncoding=true&amp;amp;characterEncoding=UTF-8" /&gt; </code></pre> <h2> MySQL database and tables</h2> <p>The used database must use UTF-8 encoding. This is achieved by creating the database with the following:</p> <pre><code> CREATE DATABASE `ID_development` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_swedish_ci */; </code></pre> <p>Then, all of the tables need to be in UTF-8 also:</p> <pre><code> CREATE TABLE `Users` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(30) collate utf8_swedish_ci default NULL PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_swedish_ci ROW_FORMAT=DYNAMIC; </code></pre> <p>The key part being <b>CHARSET=utf8</b>.</p> <h2> MySQL server configuration </h2> <p>MySQL serveri has to be configured also. Tupically this is done in Windows by modifying <b>my.ini</b> -file and in Linux by configuring <b>my.cnf</b> -file. In those files it should be defined that all clients connected to the server use utf8 as the default character set and that the default charset used by the server is also utf8.</p> <pre><code> [client] port=3306 default-character-set=utf8 [mysql] default-character-set=utf8 </code></pre> <h2> Mysql procedures and functions </h2> <p>These also need to have the character set defined. For example:</p> <pre><code> DELIMITER $$ DROP FUNCTION IF EXISTS `pathToNode` $$ CREATE FUNCTION `pathToNode` (ryhma_id INT) RETURNS TEXT CHARACTER SET utf8 READS SQL DATA BEGIN DECLARE path VARCHAR(255) CHARACTER SET utf8; SET path = NULL; ... RETURN path; END $$ DELIMITER ; </code></pre> <h2> GET requests: latin1 and UTF-8 </h2> <p>If and when it's defined in tomcat's server.xml that GET request parameters are encoded in UTF-8, the following GET requests are handled properly:</p> <pre><code> https://localhost:8443/ID/Users?action=search&amp;name=Petteri https://localhost:8443/ID/Users?action=search&amp;name=ж </code></pre> <p>Because ASCII-characters are encoded in the same way both with latin1 and UTF-8, the string "Petteri" is handled correctly.</p> <p>The Cyrillic character ж is not understood at all in latin1. Because Tomcat is instructed to handle request parameters as UTF-8 it encodes that character correctly as <b>%D0%B6</b>. </p> <p>If and when browsers are instructed to read the pages in UTF-8 encoding (with request headers and html meta-tag), at least Firefox 2/3 and other browsers from this period all encode the character themselves as <b>%D0%B6</b>. </p> <p>The end result is that all users with name "Petteri" are found and also all users with the name "ж" are found.</p> <h3>But what about äåö?</h3> <p>HTTP-specification defines that by default URLs are encoded as latin1. This results in firefox2, firefox3 etc. encoding the following</p> <pre><code> https://localhost:8443/ID/Users?action=search&amp;name=*Päivi* </code></pre> <p>in to the encoded version</p> <pre><code> https://localhost:8443/ID/Users?action=search&amp;name=*P%E4ivi* </code></pre> <p>In latin1 the character <b>ä</b> is encoded as <b>%E4</b>. <em>Even though the page/request/everything is defined to use UTF-8</em>. The UTF-8 encoded version of ä is <b>%C3%A4</b></p> <p>The result of this is that it's quite impossible for the webapp to correly handle the request parameters from GET requests as some characters are encoded in latin1 and others in UTF-8. <b>Notice: POST requests do work as browsers encode all request parameters from forms completely in UTF-8 if the page is defined as being UTF-8</b></p> <h2> Stuff to read </h2> <p>A very big thank you for the writers of the following for giving the answers for my problem:</p> <ul> <li> http://tagunov.tripod.com/i18n/i18n.html>http://tagunov.tripod.com/i18n/i18n.html</li> <li> http://wiki.apache.org/tomcat/Tomcat/UTF-8 </li> <li> http://java.sun.com/developer/technicalArticles/Intl/HTTPCharset/ </li> <li> http://dev.mysql.com/doc/refman/5.0/en/charset-syntax.html </li> <li> http://cagan327.blogspot.com/2006/05/utf-8-encoding-fix-tomcat-jsp-etc.html </li> <li> http://cagan327.blogspot.com/2006/05/utf-8-encoding-fix-for-mysql-tomcat.html </li> <li> http://jeppesn.dk/utf-8.html </li> <li> http://www.nabble.com/request-parameters-mishandle-utf-8-encoding-td18720039.html </li> <li> http://www.utoronto.ca/webdocs/HTMLdocs/NewHTML/iso_table.html </li> <li> http://www.utf8-chartable.de/ </li> </ul> http://stackoverflow.com/questions/133341/improve-web-design-skills/133381#133381 0 Answer by kosoant for Improve web design skills? kosoant 2008-09-25T13:38:24Z 2008-09-25T13:38:24Z <p>Maybe you could go through one of the many "best looking sites of the web" listings and try to figure out what you like and why. Then try to recreate similar stuff on your own site.</p> http://stackoverflow.com/questions/132685/font-size-in-css-or-em/132884#132884 0 Answer by kosoant for Font size in CSS - % or em? kosoant 2008-09-25T12:04:25Z 2008-09-25T12:04:25Z <p><a href="http://developer.yahoo.com/yui/" rel="nofollow">Yahoo User Interface library (<a href="http://developer.yahoo.com/yui/" rel="nofollow">http://developer.yahoo.com/yui/</a>)</a> has a nice set of base css classes used to "reset" the browser specific settings so that the basis for displaying the site is same for all (supported) browsers.</p> <p>With YUI one is supposed to use percentages.</p> http://stackoverflow.com/questions/132754/different-layouts-and-i18n-in-jsp-application/132862#132862 1 Answer by kosoant for Different layouts and i18n in JSP application kosoant 2008-09-25T12:00:47Z 2008-09-25T12:00:47Z <p>With plain old JSP without any kinds of fameworks:</p> <p>1) Use controllers to do the processing and only use jsp to display the data</p> <p>2) Use jsp include directives to include header, navigation, menu, footer and other necessary common/shared elements to all of those layouts.</p> <p>Or/and:</p> <p>Use the following in web.xml</p> <pre><code> &lt;jsp-property-group&gt; &lt;url-pattern&gt;/customers/*&lt;/url-pattern&gt; &lt;include-prelude&gt;/shared/layout/_layout_customers_top.jsp&lt;/include-prelude&gt; &lt;include-coda&gt;/shared/layout/_layout_customers_bottom.jsp&lt;/include-coda&gt; &lt;/jsp-property-group&gt; </code></pre> <p>The url pattern determines which jsps get which jsp fragments (partials in Ruby on Rails) attached to top/bottom.</p> http://stackoverflow.com/questions/131508/which-browsers-and-operating-systems-do-you-target-on-new-websites/131579#131579 6 Answer by kosoant for Which browsers and operating systems do you target on new websites? kosoant 2008-09-25T05:15:56Z 2008-09-25T05:15:56Z <p>Mainly I just target browsers as the sites I've built don't really depend on anything OS specific. As mentioned above, YAHOO's graded browser support guide is a good starting point on determining which browsers yous should/could support. And Yahoo's User Interface library (CSS+JavaScript) helps massively in achieving this.</p> <p>But when developing sites I primarily do it on Firefox2 as it has the best web developing tools (firebug + wed developer toolkit). Then I also test my sites with Opera 9.5 as it's my browser of choice for <i>browsing</i>. I've previously lost all hope on supporting IE6 at any reasonable level so these days I just inform my users to upgrade to IE7 which is almost capable of displaying sites similarly to FF2/3+Chrome+Opera.</p> <p>FF3 and Chrome are so new at the moment that I tend to ignore them, but I must say: They're friggin fast! My javascript/css heavy sites are noticeably faster with them. </p> http://stackoverflow.com/questions/126797/is-there-a-style-guide-for-guis-somewhere/126965#126965 0 Answer by kosoant for Is there a style guide for GUI's somewhere? kosoant 2008-09-24T12:58:36Z 2008-09-24T12:58:36Z <p>Answer for the guestion in title: For browser look and feel, Oracle has a decent guide: <a href="http://www.oracle.com/technology/tech/blaf/index.html" rel="nofollow">BLAF (<a href="http://www.oracle.com/technology/tech/blaf/index.html" rel="nofollow">http://www.oracle.com/technology/tech/blaf/index.html</a>)</a></p> <p>Although it's a few years old, the basics are still the same.</p> http://stackoverflow.com/questions/126720/how-to-avoid-storing-credentials-to-connect-to-oracle-with-jdbc/126743#126743 1 Answer by kosoant for How to avoid storing credentials to connect to Oracle with JDBC? kosoant 2008-09-24T12:12:58Z 2008-09-24T12:12:58Z <p>To my knowledge jdbc connection usernames/passwords need to be stored as plain text. One way to limit the possible risks of this is to restrict the rights of the user so that only the given applications database can be used and only from a predefined host. IMO, this would limit the attacker very much: he could only use the un/pw from the same host where the original application resides and only to attack the original application's database.</p> http://stackoverflow.com/questions/48/multiple-submit-buttons-on-a-form/56#56 Comment by kosoant on Multiple submit buttons on a form kosoant 2009-11-06T11:14:02Z 2009-11-06T11:14:02Z This is not what the user asked. The user wanted to know how to control which submit button in a form is activated when enter is pressed ie. which is the default button. http://stackoverflow.com/questions/90813/best-practices-principles-for-gui-design/91000#91000 Comment by kosoant on Best Practices & Principles for GUI design kosoant 2009-06-03T06:00:23Z 2009-06-03T06:00:23Z It might be so. But a quick read on Spool's article <a href="http://www.uie.com/brainsparks/2005/09/26/value-of-breadcrumbs/" rel="nofollow">uie.com/brainsparks/2005/&hellip;</a> gives me the impression that he thinks that breadcrumbs are just a navigational tool for the user. In my opinion they're also a good &quot;page heading&quot;. Also, Spool's article is far from scientific... http://stackoverflow.com/questions/836569/what-do-refresh-and-merge-mean-in-terms-of-databases/836632#836632 Comment by kosoant on What do REFRESH and MERGE mean in terms of databases? kosoant 2009-05-11T06:03:30Z 2009-05-11T06:03:30Z Thank you for explaining this. I've been very confused about this issue too... http://stackoverflow.com/questions/823546/can-anyone-recommend-an-off-the-shelf-acl-java-lib/823581#823581 Comment by kosoant on can anyone recommend an off the shelf ACL java lib? kosoant 2009-05-07T11:29:33Z 2009-05-07T11:29:33Z That is exactly the same requirement I had! Thanks for letting me now that I'm not alone :) http://stackoverflow.com/questions/706313/how-do-you-remove-rows-after-changing-the-item-in-a-jpa-onetoone-relationship Comment by kosoant on How do you remove rows after changing the item in a JPA OneToOne relationship? kosoant 2009-04-29T07:31:30Z 2009-04-29T07:31:30Z Have you found a solution to this? http://stackoverflow.com/questions/722448/how-to-avoid-copying-40m-of-java-libs-within-a-war-when-the-wars-size-is-41m/722480#722480 Comment by kosoant on How to avoid copying 40M of java lib's within a WAR when the WAR's size is 41M? kosoant 2009-04-09T15:10:31Z 2009-04-09T15:10:31Z I'm with matt and Robin on this: Wouldn't really like to mess up the whole server environment with libraries of one webapp. http://stackoverflow.com/questions/722448/how-to-avoid-copying-40m-of-java-libs-within-a-war-when-the-wars-size-is-41m/722459#722459 Comment by kosoant on How to avoid copying 40M of java lib's within a WAR when the WAR's size is 41M? kosoant 2009-04-09T15:09:51Z 2009-04-09T15:09:51Z Wouldn't really like to mess up the whole server environment with libraries of one webapp. http://stackoverflow.com/questions/722448/how-to-avoid-copying-40m-of-java-libs-within-a-war-when-the-wars-size-is-41m/725057#725057 Comment by kosoant on How to avoid copying 40M of java lib's within a WAR when the WAR's size is 41M? kosoant 2009-04-09T15:09:05Z 2009-04-09T15:09:05Z Thanks for the tips on more advanced containers. http://stackoverflow.com/questions/553749/spring-mvc-webapp-where-to-store-paths-to-common-images/553806#553806 Comment by kosoant on Spring MVC Webapp: Where to store paths to common images? kosoant 2009-02-17T00:26:03Z 2009-02-17T00:26:03Z Could you elaborate a little on this approach? Thanks. http://stackoverflow.com/questions/439861/spring-mvc-tag-interaction-with-custom-tag/462972#462972 Comment by kosoant on Spring MVC tag interaction with custom tag kosoant 2009-02-01T18:31:37Z 2009-02-01T18:31:37Z This is exactly what I need! http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/96492#96492 Comment by kosoant on What are your favorite Vim tricks? kosoant 2008-11-18T11:58:38Z 2008-11-18T11:58:38Z Wow! I've needed this so many times! http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203526#203526 Comment by kosoant on What things didn't you know you needed but are now very glad you have? kosoant 2008-11-17T10:43:44Z 2008-11-17T10:43:44Z Even greater for developing webapps on top of multiple tomcat/java/database configurations. Previously I would install separate tomcats on my development machine and be completely lost when configuring which java is used etc. Now I have my own VM's per project http://stackoverflow.com/questions/161003/dynamic-breadcrumb-generation-how-to-do/161034#161034 Comment by kosoant on Dynamic breadcrumb generation - how to do? kosoant 2008-10-02T09:01:16Z 2008-10-02T09:01:16Z It's a nice idea, but the problem with this would be the case when a user is browsing the same site on multiple tabs (at least I hope users understand to do this) http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps/138950#138950 Comment by kosoant on How to get UTF-8 working in java webapps? kosoant 2008-09-26T11:55:35Z 2008-09-26T11:55:35Z These steps also work with Struts/tiles and a postgres database. http://stackoverflow.com/questions/80876/dynamic-contact-information-data-desing-pattern-is-this-in-any-way-feasible/81270#81270 Comment by kosoant on Dynamic contact information data/desing pattern: Is this in any way feasible? kosoant 2008-09-18T08:28:09Z 2008-09-18T08:28:09Z It's true that our uses addresses mainly just to print them on envelopes. But the problem with plain text fields without any kind of validation is that the data users input is rarely any good if they're not forced to input correctly formed data. That's a bit harsh on the user, but often necessary