User Chii - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T06:26:34Z http://stackoverflow.com/feeds/user/17335 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller/1790053#1790053 6 Answer by Chii for What can I do to make jar / classes smaller? Chii 2009-11-24T13:26:15Z 2009-11-24T13:26:15Z <p>check out this page for some tips on how you could make your jar files smaller - <a href="http://wiki.java.net/bin/view/Games/4KGamesDesign" rel="nofollow">http://wiki.java.net/bin/view/Games/4KGamesDesign</a> . Even though some may not apply since you are not trying for absolute minimalization, there are some general tips that you can apply without compromising code quality.</p> <p>but a summary here:</p> <p>Keep your code down to one class. Each class adds the overhead of an entry in the JAR file, as well as a brand new constant pool and class list.</p> <p>Keep your methods to a minimum. Each method adds overhead in the class file. All you should need is a main() method, and methods to implement the keyboard and/or mouse routines.</p> <p>Don't use global variables. Global variables require special meta-data in the class to identify. Method-local variables, however, are only stack entries and cost nothing extra to use.</p> <p>Use a good compressor like 7Zip or KZip to create your JAR files. The JAR utility is mostly designed for correctness, not compression ratios.</p> <p>Use an obfuscator like ProGuard, JoGa, or JShrink to optimize the size of your class.</p> <p>Use a single character for the class file name. This reduces its size internally, reduces the amount of info the Zip program stores, and reduces the size of the manifest.</p> <p>Reference as few classes as possible. Each class you reference adds the full package and class name, plus the method signature you're calling.</p> <p>Redundancy (such as using the same name for all your methods and classes and fields) improves compression ratios.</p> <p>Methods made private and final can be inlined by a class optimizer.</p> <p>Use the String.valueOf() method to convert primitives to strings. For example, ""+number expands to: new StringBuffer?().append("").append(number).toString() wasting a great deal of space in new class and method references.</p> <p>Static strings, floats, and integers used in the source code get stored in the constant pool. As a result, the more you can reuse a static value, the smaller your class will be.</p> <p>You can make liberal use of static final varaibles for constants. This will make your code more readable and ProGuard will optimize this away so there is no extra overhead.</p> http://stackoverflow.com/questions/1125954/how-to-display-a-different-jsp-view-for-different-types-of-objects/1762411#1762411 1 Answer by Chii for How to display a different JSP view for different types of objects Chii 2009-11-19T10:44:03Z 2009-11-19T10:44:03Z <p>Unfortunately, inheritance and polymorphism doesnt work in jsps very well. </p> <p>The easiest, and most maintainable solution has been to just do a lot of </p> <pre><code>&lt;c:choose&gt; &lt;c:when test="${animal.type == 'Cat'}"&gt; &lt;my:renderCat cat="${animal}"/&gt; &lt;/c:when&gt; &lt;c:when test="${animal.type == 'Dog'}"&gt; &lt;my:renderDog Dog="${animal}"/&gt; &lt;/c:when&gt; ... &lt;/c:choose&gt; </code></pre> <p>and have tag files (like renderDog.tag, renderCat.tag) that takes each specific animal as an attribute, and call out to them. at least it keeps the dispatching, and the rendering seperated.</p> http://stackoverflow.com/questions/1737236/java-newbie-question-static/1737241#1737241 14 Answer by Chii for Java newbie question: static{}? Chii 2009-11-15T10:59:56Z 2009-11-16T08:30:42Z <p>The static block is called a <a href="http://java.sun.com/docs/books/jls/third%5Fedition/html/classes.html#8.7" rel="nofollow">class static initializer</a> - it gets run the first time the class is loaded (and it's the only time it's run [footnote]).</p> <p>The purpose of that particular block is to check if the <a href="http://en.wikipedia.org/wiki/MySQL" rel="nofollow">MySQL</a> driver is on the classpath (and throw/log error if it's not). </p> <p><hr></p> <p>[footnote] The static block run once per classloader that loads the class (so if you had multiple class loaders that are distinct from each other (e.g. doesn't delegate for example), it will be executed once each.</p> http://stackoverflow.com/questions/1652069/rendering-a-nested-list-with-jsp/1652905#1652905 1 Answer by Chii for Rendering a nested list with JSP Chii 2009-10-31T00:08:09Z 2009-10-31T00:08:09Z <pre><code>&lt;ul&gt; &lt;c:forEach items="${countriesList}" var="country"&gt; &lt;li&gt;${country.name} &lt;ul&gt; &lt;c:forEach items="${country.stateList}" var="state"&gt; &lt;li&gt;${state.name} &lt;ul&gt; &lt;c:forEach items="${state.addressLines}" var="addressLine"&gt; &lt;li&gt;${addressLine.addressString}&lt;/li&gt; &lt;/c:forEach&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/c:forEach&gt; &lt;/ul&gt; &lt;/li&gt; &lt;/c:forEach&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/1620786/how-to-follow-the-origin-of-a-value-in-java/1620848#1620848 2 Answer by Chii for How to follow the origin of a value in Java? Chii 2009-10-25T12:58:34Z 2009-10-25T12:58:34Z <p>Multithreaded programming is jsut hard, but there are IDE tools to help. If you have intellij IDEA, you can use the <a href="http://blogs.jetbrains.com/idea/2009/08/analyzing-dataflow-with-intellij-idea/" rel="nofollow">analyze dataflow</a> feature to work out where things gets changed. If won't show you a live flow (its a static analysis tool), but it can give you a great start. </p> <p>Alternatively, you can use some Aspects and just print out the value of the variable everywhere, but the resulting debugging info will be too overwhelming to be that meaningful. </p> <p>The solution is to avoid state shared between threads. Use immutable objects, and program functionally.</p> http://stackoverflow.com/questions/1617250/storing-persistent-data-in-browser/1617267#1617267 2 Answer by Chii for Storing persistent data in browser Chii 2009-10-24T07:26:25Z 2009-10-24T07:26:25Z <p>Hitting the storage limit of the cookie could indicate you are trying to store too much on the client side. It might be prudent to store it serverside, in something like a session. The key to the session could then be stored in a cookie.</p> <p>An alternative method is to not have the requests span multiple pages, and just store the data on the client side, not as a cookie, but as different form fields and/or text fields (they could be hidden). The merit of such a method is it doesnt hit the cookie limit as you have. It also makes your serverside code easier/cleaner, since it doesn't have to keep track of state (something you'd always have to do if spanning across pages, and thus the reason you are hitting the cookie limit in the first place).</p> http://stackoverflow.com/questions/1600215/implementing-result-paging-in-hibernate-getting-total-number-of-rows/1600229#1600229 1 Answer by Chii for Implementing result paging in hibernate (getting total number of rows) Chii 2009-10-21T11:25:52Z 2009-10-21T11:25:52Z <p>you could perform two queries - a count(*) type query, which should be cheap if you are not joining too many tables together, and a second query that has the limits set. Then you know how many items exists but only grab the ones being viewed.</p> http://stackoverflow.com/questions/1600068/automated-tests-software/1600182#1600182 1 Answer by Chii for Automated tests software Chii 2009-10-21T11:16:25Z 2009-10-21T11:16:25Z <p>another one is <a href="http://code.google.com/p/webdriver/" rel="nofollow">http://code.google.com/p/webdriver/</a></p> <p>edit: correction, webdriver and selenium are going to be merged at some point.</p> http://stackoverflow.com/questions/1594196/how-can-i-simplify-this-jquery-javascript/1594258#1594258 1 Answer by Chii for How can I simplify this jquery/javascript Chii 2009-10-20T12:29:24Z 2009-10-20T12:29:24Z <p>Think javascript templates - they are much better than hard coding strings, and mixing logic with presentation code. google saw a viable one (no doubt more out there): <a href="http://peter.michaux.ca/articles/javascript-template-libraries" rel="nofollow">http://peter.michaux.ca/articles/javascript-template-libraries</a></p> <pre><code>&lt;script language="javascript"&gt; //call your methods and produce this data var data = ok?{cssClass:"ok-box",msg:"OK some custom msg"} :{cssClass:"not-ok-box",msg:"NOT OK custom msg"}; &lt;/script&gt; &lt;textarea id="msg_template" style="display:none;"&gt; &lt;p id="${cssClass}"&gt;${msg}&lt;/p&gt; &lt;/textarea&gt; &lt;script language="javascript"&gt; var result = TrimPath.processDOMTemplate("msg_template", data); document.getElementById('content').innerHTML = result; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1593532/custom-jstl-tags-with-body/1594150#1594150 1 Answer by Chii for Custom JSTL tags with body Chii 2009-10-20T12:08:41Z 2009-10-20T12:08:41Z <p>Similar to McDowell's answer, but with more flexibility, is to declare an attribute that is a fragment. <a href="http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPTags5.html#wp89854" rel="nofollow">http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPTags5.html#wp89854</a></p> <p>e.g., //foo.tag tag file</p> <pre><code>&lt;%@ attribute name="greeting" fragment="true" %&gt; &lt;%@ attribute name="body" fragment="true" %&gt; &lt;h1&gt;&lt;jsp:invoke fragment="greeting" /&gt;&lt;/h1&gt; &lt;p&gt;body: &lt;em&gt;jsp:invoke fragment="body" /&gt;&lt;/em&gt;&lt;/p&gt; </code></pre> <p>jsp file</p> <pre><code>&lt;x:foo&gt; &lt;jsp:attribute name="greeting"&gt;&lt;b&gt;a fancy&lt;/b&gt; hello&lt;/jsp:attribute&gt; &lt;jsp:attribute name="body"&gt;&lt;pre&gt;more fancy body&lt;/pre&gt;&lt;/jsp:attribute&gt; &lt;/x:foo&gt; </code></pre> <p>this will produce</p> <pre><code>&lt;h1&gt;&lt;b&gt;a fancy&lt;/b&gt; hello&lt;/h1&gt; &lt;p&gt;body: &lt;em&gt;&lt;pre&gt;more fancy body&lt;/pre&gt;&lt;/em&gt;&lt;/p&gt; &lt;/body&gt; </code></pre> <p>The main advantage is to be able to have two fragments, instead of just one with a tag.</p> http://stackoverflow.com/questions/982814/how-can-i-post-parameters-for-jstl-import-tag-cimport/1593076#1593076 0 Answer by Chii for How can I post parameters for JSTL import tag (<c:import>)? Chii 2009-10-20T07:59:16Z 2009-10-20T07:59:16Z <p>After looking thru <a href="http://www.docjar.com/html/api/org/apache/taglibs/standard/tag/common/core/ImportSupport.java.html" rel="nofollow">http://www.docjar.com/html/api/org/apache/taglibs/standard/tag/common/core/ImportSupport.java.html</a> and <a href="http://www.docjar.com/html/api/org/apache/taglibs/standard/tag/el/core/ImportTag.java.html" rel="nofollow">http://www.docjar.com/html/api/org/apache/taglibs/standard/tag/el/core/ImportTag.java.html</a> , i ve come to the conclusion that you cannot do a POST request using the <code>import</code> tag. </p> <p>I guess the only choice you have is to use a custom tag - it should be pretty easy to write an apache httpclient tag that takes some POST param and output the response text.</p> http://stackoverflow.com/questions/1592724/best-quickest-way-to-learn-java-for-a-seasoned-net-c-and-c-developer/1592749#1592749 0 Answer by Chii for Best/quickest way to learn Java for a seasoned .NET/C# and C++ developer Chii 2009-10-20T06:08:49Z 2009-10-20T06:08:49Z <p>I m only speaking for java web app development: i think its going to be quite similar to how you might've done it in C# using ASP.NET, except you don't get the visual drag and drop GUI creation using visual studio. The basic concepts are pretty much the same. </p> <p>As for libraries, there are a million and one in java, and only time will help with those. But it'll help knowing the common ones, such as <a href="http://commons.apache.org/" rel="nofollow">apache commons</a>, <a href="http://code.google.com/p/google-collections/" rel="nofollow">google collections</a>, <a href="http://www.springsource.org/documentation" rel="nofollow">spring</a>, <a href="https://www.hibernate.org/5.html" rel="nofollow">hibernate</a>. It might help you get started if you start with something like <a href="http://appfuse.org/display/APF/AppFuse+QuickStart" rel="nofollow">Appfuse</a>, which is a full java RAD web app framework that munges together all the above common frameworks. </p> <p>On the build tools side, there are <a href="http://ant.apache.org/manual/index.html" rel="nofollow">ant</a> and <a href="http://maven.apache.org/" rel="nofollow">maven</a> as the major players. I prefer ant over maven personally. </p> http://stackoverflow.com/questions/1592649/examples-of-algorithms-which-has-o1-on-log-n-and-olog-n-complexities/1592717#1592717 3 Answer by Chii for Examples of Algorithms which has O(1), O(n log n) and O(log n) complexities. Chii 2009-10-20T05:57:25Z 2009-10-20T05:57:25Z <p>O(1) - most cooking procedures are O(1), that is, it takes a constant amount of time even if there are more people to cook for (to a degree, because you could run out of space in your pot/pans and need to split up the cooking)</p> <p>O(logn) - finding something in your telephone book. Think binary search. </p> <p>O(n) - reading a book, where n is the number of pages. It is the minimum amount of time it takes to read a book.</p> <p>O(nlogn) - cant immediately think of something one might do everyday that is nlogn...unless you sort cards by doing merge or quick sort!</p> http://stackoverflow.com/questions/1591347/bigdecimal-evaluated-as-a-string-in-velocity-struts2/1592687#1592687 0 Answer by Chii for BigDecimal evaluated as a string in Velocity, Struts2 Chii 2009-10-20T05:47:17Z 2009-10-20T05:47:17Z <p>perhaps you need to implement your own iterator - it will just store the start and end of the list of bigDecimals, and return the current one. This way, you can have an unlimited sized list of numbers (i assume that is what you wanted because you are using BigDecimals. Otherwise, just use an int or a long):</p> <pre><code>#set ($countIterator = ${item.qtyIterator}) #foreach($i in $countIterator) ${i} ....use $i as a string... #end </code></pre> <p>and </p> <pre><code>public class QuantityIterator implement Iterator&lt;BigDecimal&gt; { QuantityIterator(BigDecimal start, BigDecimal end) { this.start = start;this.end=end;} //..implement the iterator methods like hasNext() etc public hasNext() {return this.current.compareTo(this.end) &lt; 0;} //current &lt;= end public BigDecimal next() { if (!hasNext()) { throw new NoSuchElementException(); } this.current = this.current.add(BigDecimal.ONE); return this.current; } public void remove(){throw new UnsupportedException();} } </code></pre> http://stackoverflow.com/questions/1576615/singletonclasses/1578151#1578151 1 Answer by Chii for singletonclasses Chii 2009-10-16T13:47:28Z 2009-10-16T13:47:28Z <p>for connecting to jsp, you would use p3t0r's answer.</p> <p>for singleton, you would use a lazy private static class singleton which guarentees thread safety*: </p> <pre><code>public class SingletonClass { private static class LazySingletonInitializer { static SingletonClass instance = new SingletonClass(); } private SingletonClass(){} public SingletonClass getInstance() { return LazySingletonInitializer.instance; } } </code></pre> <p>(*) because static members of a class are guarenteed by the jvm to be initialized by only one thread.</p> http://stackoverflow.com/questions/1574807/jsp-javascript-and-java-objects/1578064#1578064 2 Answer by Chii for JSP, JavaScript, and Java Objects Chii 2009-10-16T13:33:38Z 2009-10-16T13:33:38Z <p>you wont need to use an external json library (but you could!) - you can print out the json directly into a javascript variable like:</p> <pre><code>&lt;%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %&gt; &lt;script&gt; (function(){ var sales = { &lt;c:forEach var="entry" items="${requestScope['sales'].entrySet}" varStatus="counter"&gt; '${entry.key}' : ${entry.value} //outputs "2000" :1234 , &lt;c:if test="${!counter.last}"&gt;, &lt;/c:test&gt; &lt;/c:foreach&gt; }; //js code that uses the sales object doStuffWith(sales); })() &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1570954/java-retrieve-the-generic-parameter-value-at-runtime/1570977#1570977 1 Answer by Chii for Java: Retrieve the generic parameter value at runtime Chii 2009-10-15T08:16:35Z 2009-10-15T08:16:35Z <p>To achieve that, you need to add the type info, since type erasure means that <code>T</code>'s type is not available.</p> <pre><code>public class MyClass&lt;T&gt; { private final Class&lt;T&gt; clazz; public MyClass(Class&lt;T&gt; clazz) { this.clazz=clazz; } public void printT() { // print the class of T, something like: System.out.println(this.clazz); } } </code></pre> http://stackoverflow.com/questions/1559759/img-embedding-problem-in-struts2-jsp-page/1559934#1559934 1 Answer by Chii for Img embedding problem in Struts2 jsp page. Chii 2009-10-13T12:34:15Z 2009-10-13T12:34:15Z <p>if the <code>images/illus1.gif</code> file is in the same directory as the <code>screencompany.html</code> file, then you can omit the dot,as well as the leading slash.</p> http://stackoverflow.com/questions/1553627/how-to-control-the-memory-usage-of-processes-spawned-by-a-jvm/1553765#1553765 1 Answer by Chii for How to control the memory usage of processes spawned by a JVM Chii 2009-10-12T10:15:20Z 2009-10-12T10:15:20Z <p>If by 'control' you mean 'limit to a known upper bound', then you can simply pass </p> <pre><code>-Xms`lower_bound` </code></pre> <p>and </p> <pre><code>-Xmx`upper_bound` </code></pre> <p>to the vm's args when you spawn the process. <a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html" rel="nofollow">see the approproate setting here</a></p> http://stackoverflow.com/questions/1529232/triple-single-quote-strings-in-groovy-should-the-resulting-string-contain-extra/1531208#1531208 0 Answer by Chii for Triple single quote strings in Groovy - Should the resulting string contain extra spaces? Chii 2009-10-07T12:02:11Z 2009-10-07T12:02:11Z <p>if you just forgo the formatting requirement, and format it like</p> <pre><code>description: '''Join the Perl programmers of the Pork Producers of America as we hone our skills and ham it up a bit. You can show off your programming chops while trying to win a year's supply of pork chops in our programming challenge. Come and join us in historic (and aromatic), Austin, Minnesota. You'll know when you're there!''' </code></pre> <p>then you will get the desired string, without having to post-process it. It doesnt look too bad imho...</p> http://stackoverflow.com/questions/1515940/learning-how-programming-languages-work/1515946#1515946 3 Answer by Chii for Learning how programming languages work Chii 2009-10-04T08:44:27Z 2009-10-04T08:44:27Z <p><a href="http://groups.csail.mit.edu/mac/classes/6.001/abelson-sussman-lectures/" rel="nofollow">This site has a great series</a> of lectures on the Structure and Interpretation of Computer Programs, which is exactly the type of thing you are wanting to learn. The accompanying textbook is useful too, tho i havent personally read thru the whole thing. I think watching the lectures is pretty good, gets you about 60% of the way there.</p> http://stackoverflow.com/questions/1514960/how-to-reference-a-java-class-file-from-a-jsp-page/1515927#1515927 0 Answer by Chii for how to reference a java .class file from a JSP page? Chii 2009-10-04T08:36:49Z 2009-10-04T08:42:30Z <p>try something like this: <code>&lt;jsp:useBean id="now" class="java.util.Date"/&gt;</code></p> <p>the above creates an instance of Date and adds it as the request attribute map key <code>now</code>. It is then available for use, just like any other request attribute variable, e.g., inside el expressions such as <code>${now.time}</code> will print the time in milliseconds.</p> <p>So in your scenario, you'd do <code>&lt;jsp:useBean id="Helper" class="com.your.company.name.Helper"/&gt;</code>. Make sure Helper has a no arg public constructor.</p> <p>extra info here <a href="http://java.sun.com/products/jsp/tags/11/syntaxref11.fm14.html" rel="nofollow">http://java.sun.com/products/jsp/tags/11/syntaxref11.fm14.html</a></p> http://stackoverflow.com/questions/1512924/fake-obfuscation-of-javascript/1512971#1512971 0 Answer by Chii for Fake obfuscation of JavaScript Chii 2009-10-03T06:22:00Z 2009-10-03T06:22:00Z <p>if you dont mind using another technology, GWT does something similar - except that it will not slow down your script by adding extra indirections. </p> http://stackoverflow.com/questions/1510374/how-much-unit-testing-is-a-good-thing/1510401#1510401 2 Answer by Chii for How much unit testing is a good thing? Chii 2009-10-02T15:53:31Z 2009-10-02T15:53:31Z <p>Test enough so that you can feel comfortable that a bad refactor will be caught by the tests. Usually, its enough to test logic, and plumbing/wiring code. If you have code that is essentially getter/setters, why test them?</p> <p>regarding the sales guy's opinion that testing isnt needed - well, if they know so much, why dont they do the bloody coding?</p> http://stackoverflow.com/questions/1510319/constants-and-annotation/1510360#1510360 2 Answer by Chii for Constants and annotation Chii 2009-10-02T15:45:58Z 2009-10-02T15:45:58Z <p>sel is a final static, but its value is evaluated the first time this class is loaded. The <code>@annotations</code> are evaluated at compile time, hence the error.</p> <p>You are better off doing something like a macro/substitution pre-processing step during build to generate the right value (may be base it off a .properties file). </p> http://stackoverflow.com/questions/1497855/how-to-run-a-hsqldb-server-in-memory-only-mode/1498178#1498178 1 Answer by Chii for How to run a HSQLDB server in memory-only mode Chii 2009-09-30T13:36:50Z 2009-09-30T13:36:50Z <p>use <code>java -cp .\hsqldb-1.8.0.10.jar org.hsqldb.Server -database.0 mem:aname</code></p> <p>In memory mode is specified by the connection url - so if you want, you can just have a server.properties file in the same directory, and set the connection url to use the <code>mem</code> protocol - or if you are using hsqldb in another application that allows you to specify the connection url such as jdbc, specify <code>jdbc:hsqldb:mem:aname</code>.</p> http://stackoverflow.com/questions/1496240/in-grails-is-property-a-reserved-word/1497878#1497878 0 Answer by Chii for In Grails, is "property" a reserved word? Chii 2009-09-30T12:44:27Z 2009-09-30T12:44:27Z <p>While I cant <a href="http://fisheye.codehaus.org/search/grails/?comment=&amp;contents=&amp;addedText=&amp;deletedText=&amp;filename=%2A%2A/Property.%2A&amp;branch=&amp;tag=&amp;fromdate=&amp;todate=&amp;groupby=file&amp;col=path&amp;col=revision&amp;col=author&amp;col=date&amp;col=csid&amp;refresh=y" rel="nofollow">find any file with the name <code>Property</code> in grails</a>, it is wise not to use such a common word - who knows when it might become reserved in the future? </p> <p>What would happen if you just prepended your classname with something, like BlahProperty?</p> http://stackoverflow.com/questions/1490139/evaluate-list-contains-string-in-jstl/1490181#1490181 2 Answer by Chii for Evaluate list.contains string in JSTL Chii 2009-09-29T01:45:19Z 2009-09-29T02:00:54Z <p>there is no built-in feature to check that - what you would do is write your own tld function which takes a list and an item, and calls the list's contains() method. e.g.</p> <pre><code>//in your own WEB-INF/custom-functions.tld file add this &lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt; &lt;!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"&gt; &lt;taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" version="2.0" &gt; &lt;tlib-version&gt;1.0&lt;/tlib-version&gt; &lt;function&gt; &lt;name&gt;contains&lt;/name&gt; &lt;function-class&gt;com.Yourclass&lt;/function-class&gt; &lt;function-signature&gt;boolean contains(java.util.List,java.lang.Object)&lt;/function-signature&gt; &lt;/function&gt; </code></pre> <p>Then create a class called Yourclass, and add a static method called contains with the above signature. I m sure the implementation of that method is pretty self explanatory:</p> <pre><code>public class Yourclass { public static boolean contains(List list, Object o) { return list.contains(o); } } </code></pre> <p>Then you can use it in your jsp:</p> <pre><code>&lt;%@ taglib uri="WEB-INF/custom-functions.tld" prefix="fn" %&gt; &lt;c:if test="${ fn:contains( mylist, myValue ) }"&gt;style='display:none;'&lt;/c:if&gt; </code></pre> <p>edit: more info regarding the tld file - <a href="http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html#wp71298" rel="nofollow">more info here </a></p> http://stackoverflow.com/questions/1476682/how-do-you-compile-high-level-code-to-get-assembly-code/1476693#1476693 1 Answer by Chii for How do you compile high-level code to get assembly code? Chii 2009-09-25T11:07:45Z 2009-09-25T11:07:45Z <p>assuming you are using gcc, <a href="http://www.delorie.com/djgpp/v2faq/faq8%5F20.html" rel="nofollow">http://www.delorie.com/djgpp/v2faq/faq8%5F20.html</a> tells you to <code>gcc -O2 -S -c foo.c</code></p> <p>look at the manual/doco for your compiler - i m sure there is an option to do it.</p> http://stackoverflow.com/questions/1471743/grails-use-a-custom-jsp-taglib/1476617#1476617 0 Answer by Chii for Grails - use a custom JSP taglib Chii 2009-09-25T10:48:31Z 2009-09-25T10:54:30Z <p>modify the "web-app/WEB-INF/tld/grails.tld" file and add the necessary entries that point to your class:</p> <pre><code>&lt;tag&gt; &lt;name&gt;includeJs&lt;/name&gt; &lt;tag-class&gt;com.mycompany.taglib.IncludeJsTag&lt;/tag-class&gt; &lt;body-content&gt;JSP&lt;/body-content&gt; &lt;variable&gt; &lt;name-given&gt;it&lt;/name-given&gt; &lt;variable-class&gt;java.lang.Object&lt;/variable-class&gt; &lt;declare&gt;true&lt;/declare&gt; &lt;scope&gt;AT_BEGIN&lt;/scope&gt; &lt;/variable&gt; &lt;dynamic-attributes&gt;true&lt;/dynamic-attributes&gt; &lt;/tag&gt; </code></pre> <p>put <code>common-view.jar</code> in the lib directory. and it should be ready to go! </p> <p>NOTE: about the namespace - in GSP, i think the global g: namespace can be used to refer to your tag above.</p> <p>For more info, check out this page - its a bit hard to distill it, but if you've done jsp/servlets, it should be pretty understandable. <a href="http://grails.org/Dynamic+Tag+Libraries" rel="nofollow">http://grails.org/Dynamic+Tag+Libraries</a> </p> <p>Edit: i was able to extract more info from this bug report than the above doco page : <a href="http://jira.codehaus.org/browse/GRAILS-4571" rel="nofollow">http://jira.codehaus.org/browse/GRAILS-4571</a> . Essentially, you would add the tag declaration to either grails.tld or your own (if you use grails.tld, you wont need to declare a taglib on the page you are using that tag (i.e., <code>&lt;%@ taglib prefix="jct" uri="/WEB-INF/tld/jsp-custom-tags.tld"%&gt;</code>). Make sure your jar containing the taglib is in the classspath. Putting it in /lib/ will work nicely.</p> http://stackoverflow.com/questions/1839938/serve-jsp-stored-in-db Comment by Chii on Serve JSP stored in DB Chii 2009-12-03T13:47:24Z 2009-12-03T13:47:24Z why anyone want to do this is beyond me - what advantage does it bring over just having the jsp on disk? If you are making a content management system and want customizable UI, you can still do it on disk instead of storing the jsp file on DB and then recompiling it at runtime... http://stackoverflow.com/questions/1795278/creating-object-to-get-expected-json Comment by Chii on Creating object to get expected Json Chii 2009-11-25T09:33:34Z 2009-11-25T09:33:34Z perhaps you should try it? http://stackoverflow.com/questions/1795496/java-generics-comparison Comment by Chii on Java Generics comparison Chii 2009-11-25T08:53:34Z 2009-11-25T08:53:34Z can you post more of the compile error - include the line number. Probably ok for this question, but generally, that is useful information when asking for help. http://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller/1790053#1790053 Comment by Chii on What can I do to make jar / classes smaller? Chii 2009-11-25T08:50:31Z 2009-11-25T08:50:31Z these suggestions are not all applicable to all situations - they are mainly for this competition called java4k where you create a game in java under 4k of jar. But you can cherry pick one, e.g., using a better compressor than the standard jar uses, etc. http://stackoverflow.com/questions/1789373/custom-jsp-tag-detect-existence-of-other-instances/1790147#1790147 Comment by Chii on Custom JSP tag - detect existence of other instances Chii 2009-11-25T08:48:04Z 2009-11-25T08:48:04Z indeed correct - i had not considered threadreuse. http://stackoverflow.com/questions/1782598/with-java-reflection-how-to-instantiate-a-new-object-then-call-a-method-on-it/1782616#1782616 Comment by Chii on With Java reflection how to instantiate a new object, then call a method on it? Chii 2009-11-23T12:31:18Z 2009-11-23T12:31:18Z you can only do that if you knew at compile time, that instance is going to be a FooBar - which then means you wouldn't need to use reflection in the first place! http://stackoverflow.com/questions/1777640/using-g-render-in-a-grails-service/1778991#1778991 Comment by Chii on Using g.render in a grails service Chii 2009-11-23T12:23:15Z 2009-11-23T12:23:15Z with great power comes great responsibility! becareful when doing things like this - make sure you know the reasoning behind rendering gsp in a service before doing it :) http://stackoverflow.com/questions/1768532/using-javascript-find-the-height-a-div-is-going-to-take-before-it-is-rendered/1768541#1768541 Comment by Chii on using javascript find the height a div is going to take before it is rendered Chii 2009-11-23T12:20:28Z 2009-11-23T12:20:28Z what you could try is render it offscreen (i.e., out of the viewport), measure it, then either destroy that, then rerender the same thing back in the place you want (or move it to the place you want)? http://stackoverflow.com/questions/1782394/using-final-object-in-anonymous-inner-class-results-in-null Comment by Chii on Using final object in anonymous inner class results in null Chii 2009-11-23T11:11:34Z 2009-11-23T11:11:34Z theres very little code to go on - there could potentially have been shadowing that we cant see since not all source code is provided - what if you reduced it to the minimalist code (that compiles) and post it here? http://stackoverflow.com/questions/95868/best-web-front-end-for-svn/95885#95885 Comment by Chii on Best web front-end for SVN? Chii 2009-11-19T15:16:50Z 2009-11-19T15:16:50Z best free option (tho if you can go commercial, fisheye beats this hands down). http://stackoverflow.com/questions/1761608/how-to-develop-a-customized-browser-with-java Comment by Chii on How to develop a customized browser with java? Chii 2009-11-19T10:35:06Z 2009-11-19T10:35:06Z i would recommend you to take a look at the source code from GWT - especially the hosted mode browser (not the OOPHM one). It contains code for a browser written in java (with a dash of native code) that embeds the native browser from the OS in a java frame. However, from looking at what and how you are asking this question, it seems you dont have enough technical capability, so perhaps just using an existing browser is a better solution for you. http://stackoverflow.com/questions/1761748/arrayindexoutofboundsexception Comment by Chii on ArrayIndexOutOfBoundsException Chii 2009-11-19T08:29:58Z 2009-11-19T08:29:58Z you should post your stack trace, and work out where it happened. Then may be you can tell immediately where it went wrong. If not, try stepping through the code in debug. http://stackoverflow.com/questions/1748485/can-i-do-this-in-java/1748513#1748513 Comment by Chii on Can i do this in Java? Chii 2009-11-17T13:25:18Z 2009-11-17T13:25:18Z an explanation would be good lol! http://stackoverflow.com/questions/1741037/problem-with-valueof-converting-a-char-to-character-in-java Comment by Chii on problem with valueOf(), converting a char to Character in Java Chii 2009-11-16T09:31:34Z 2009-11-16T09:31:34Z can you post the exact error msg as displayed by the compiler? it tells you where, and often tells you the exact cause. I suspect you just had the wrong scope for one of your variables or methods - is valueOf() statically imported? http://stackoverflow.com/questions/1741041/assert-that-two-java-beans-are-equivalent Comment by Chii on Assert that two java beans are equivalent Chii 2009-11-16T09:29:39Z 2009-11-16T09:29:39Z you might find this blog entry enlightening <a href="http://blogs.atlassian.com/developer/2009/06/how_hamcrest_can_save_your_sou.html" rel="nofollow">blogs.atlassian.com/developer/2009/&hellip;</a>