struts2: how to substring in jsp? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T02:49:19Z http://stackoverflow.com/feeds/question/64825 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/64825/struts2-how-to-substring-in-jsp -1 struts2: how to substring in jsp? stv 2008-09-15T17:14:37Z 2008-11-07T18:47:46Z <p>hi,</p> <p>is there a way to substring in JSP files, using struts2 technologies? I mean, struts2 has its own taglib and also uses ognl. How can I get a substring from a stacked value or bean value?</p> <p>thanks in advance.</p> <p>stv</p> http://stackoverflow.com/questions/64825/struts2-how-to-substring-in-jsp/64973#64973 1 Answer by Tyler D for struts2: how to substring in jsp? Tyler D 2008-09-15T17:33:39Z 2008-09-15T17:33:39Z <p><a href="http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html" rel="nofollow">http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html</a></p> <p>Look for fn:substring and its variants.</p> <p>I've used Struts 1, but not 2.</p> http://stackoverflow.com/questions/64825/struts2-how-to-substring-in-jsp/68991#68991 0 Answer by MetroidFan2002 for struts2: how to substring in jsp? MetroidFan2002 2008-09-16T02:45:07Z 2008-09-16T02:45:07Z <p>Watch out for the functions library in certain situations, especially when using Websphere to deploy! The company I work for deploys to Websphere 6.0 version 11, which does not support the functions library properly (it does not function properly when placed inside a tag body). I remember somewhere that they fixed it in version 13. You can always create your own JSP Tag to do anything, though, so you can do that to get around the problem.</p> http://stackoverflow.com/questions/64825/struts2-how-to-substring-in-jsp/273158#273158 -1 Answer by Rob Williams for struts2: how to substring in jsp? Rob Williams 2008-11-07T18:47:46Z 2008-11-07T18:47:46Z <p>Don't.</p> <p>If you need to parse data (substring) in your JSP, then you are probably mixing business logic (how it works) with your presentation logic (how it is displayed)--they should be separate. If you are doing lots of conditionals, calculations, parsing, etc. in your JSPs, then you are creating a lot of (future) pain for yourself.</p> <p>Instead, separate those concerns--make the JSP dead simple, with no logic other than displaying data as is or not at all, plus simple loops where needed. Put all the nontrivial logic into a Java class that pushes the data into the JSP, where you will have the full power of Java available. As much as you can, make the JSPs merely a thin "skin" over your Java-based application.</p> <p>For a detailed discussion, see Terence Parr's white paper at <a href="http://www.cs.usfca.edu/~parrt/papers/mvc.templates.pdf" rel="nofollow">http://www.cs.usfca.edu/~parrt/papers/mvc.templates.pdf</a>. Save yourself a lot of heartache and maintenance.</p>