User Chii - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T06:26:34Zhttp://stackoverflow.com/feeds/user/17335http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller/1790053#17900536Answer by Chii for What can I do to make jar / classes smaller?Chii2009-11-24T13:26:15Z2009-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#17624111Answer by Chii for How to display a different JSP view for different types of objectsChii2009-11-19T10:44:03Z2009-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><c:choose>
<c:when test="${animal.type == 'Cat'}">
<my:renderCat cat="${animal}"/>
</c:when>
<c:when test="${animal.type == 'Dog'}">
<my:renderDog Dog="${animal}"/>
</c:when>
...
</c:choose>
</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#173724114Answer by Chii for Java newbie question: static{}?Chii2009-11-15T10:59:56Z2009-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#16529051Answer by Chii for Rendering a nested list with JSPChii2009-10-31T00:08:09Z2009-10-31T00:08:09Z<pre><code><ul>
<c:forEach items="${countriesList}" var="country">
<li>${country.name}
<ul>
<c:forEach items="${country.stateList}" var="state">
<li>${state.name}
<ul>
<c:forEach items="${state.addressLines}" var="addressLine">
<li>${addressLine.addressString}</li>
</c:forEach>
</ul>
</li>
</c:forEach>
</ul>
</li>
</c:forEach>
</ul>
</code></pre>
http://stackoverflow.com/questions/1620786/how-to-follow-the-origin-of-a-value-in-java/1620848#16208482Answer by Chii for How to follow the origin of a value in Java?Chii2009-10-25T12:58:34Z2009-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#16172672Answer by Chii for Storing persistent data in browserChii2009-10-24T07:26:25Z2009-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#16002291Answer by Chii for Implementing result paging in hibernate (getting total number of rows)Chii2009-10-21T11:25:52Z2009-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#16001821Answer by Chii for Automated tests softwareChii2009-10-21T11:16:25Z2009-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#15942581Answer by Chii for How can I simplify this jquery/javascriptChii2009-10-20T12:29:24Z2009-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><script language="javascript">
//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"};
</script>
<textarea id="msg_template" style="display:none;">
<p id="${cssClass}">${msg}</p>
</textarea>
<script language="javascript">
var result = TrimPath.processDOMTemplate("msg_template", data);
document.getElementById('content').innerHTML = result;
</script>
</code></pre>
http://stackoverflow.com/questions/1593532/custom-jstl-tags-with-body/1594150#15941501Answer by Chii for Custom JSTL tags with bodyChii2009-10-20T12:08:41Z2009-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><%@ attribute name="greeting" fragment="true" %>
<%@ attribute name="body" fragment="true" %>
<h1><jsp:invoke fragment="greeting" /></h1>
<p>body: <em>jsp:invoke fragment="body" /></em></p>
</code></pre>
<p>jsp file</p>
<pre><code><x:foo>
<jsp:attribute name="greeting"><b>a fancy</b> hello</jsp:attribute>
<jsp:attribute name="body"><pre>more fancy body</pre></jsp:attribute>
</x:foo>
</code></pre>
<p>this will produce</p>
<pre><code><h1><b>a fancy</b> hello</h1>
<p>body: <em><pre>more fancy body</pre></em></p>
</body>
</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#15930760Answer by Chii for How can I post parameters for JSTL import tag (<c:import>)?Chii2009-10-20T07:59:16Z2009-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#15927490Answer by Chii for Best/quickest way to learn Java for a seasoned .NET/C# and C++ developerChii2009-10-20T06:08:49Z2009-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#15927173Answer by Chii for Examples of Algorithms which has O(1), O(n log n) and O(log n) complexities. Chii2009-10-20T05:57:25Z2009-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#15926870Answer by Chii for BigDecimal evaluated as a string in Velocity, Struts2Chii2009-10-20T05:47:17Z2009-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<BigDecimal> {
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) < 0;} //current <= 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#15781511Answer by Chii for singletonclassesChii2009-10-16T13:47:28Z2009-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#15780642Answer by Chii for JSP, JavaScript, and Java ObjectsChii2009-10-16T13:33:38Z2009-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><%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<script>
(function(){
var sales = {
<c:forEach var="entry" items="${requestScope['sales'].entrySet}" varStatus="counter">
'${entry.key}' : ${entry.value} //outputs "2000" :1234 ,
<c:if test="${!counter.last}">, </c:test>
</c:foreach>
};
//js code that uses the sales object
doStuffWith(sales);
})()
</script>
</code></pre>
http://stackoverflow.com/questions/1570954/java-retrieve-the-generic-parameter-value-at-runtime/1570977#15709771Answer by Chii for Java: Retrieve the generic parameter value at runtimeChii2009-10-15T08:16:35Z2009-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<T> {
private final Class<T> clazz;
public MyClass(Class<T> 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#15599341Answer by Chii for Img embedding problem in Struts2 jsp page.Chii2009-10-13T12:34:15Z2009-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#15537651Answer by Chii for How to control the memory usage of processes spawned by a JVMChii2009-10-12T10:15:20Z2009-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#15312080Answer by Chii for Triple single quote strings in Groovy - Should the resulting string contain extra spaces?Chii2009-10-07T12:02:11Z2009-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#15159463Answer by Chii for Learning how programming languages workChii2009-10-04T08:44:27Z2009-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#15159270Answer by Chii for how to reference a java .class file from a JSP page?Chii2009-10-04T08:36:49Z2009-10-04T08:42:30Z<p>try something like this: <code><jsp:useBean id="now" class="java.util.Date"/></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><jsp:useBean id="Helper" class="com.your.company.name.Helper"/></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#15129710Answer by Chii for Fake obfuscation of JavaScriptChii2009-10-03T06:22:00Z2009-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#15104012Answer by Chii for How much unit testing is a good thing?Chii2009-10-02T15:53:31Z2009-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#15103602Answer by Chii for Constants and annotationChii2009-10-02T15:45:58Z2009-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#14981781Answer by Chii for How to run a HSQLDB server in memory-only modeChii2009-09-30T13:36:50Z2009-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#14978780Answer by Chii for In Grails, is "property" a reserved word?Chii2009-09-30T12:44:27Z2009-09-30T12:44:27Z<p>While I cant <a href="http://fisheye.codehaus.org/search/grails/?comment=&contents=&addedText=&deletedText=&filename=%2A%2A/Property.%2A&branch=&tag=&fromdate=&todate=&groupby=file&col=path&col=revision&col=author&col=date&col=csid&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#14901812Answer by Chii for Evaluate list.contains string in JSTLChii2009-09-29T01:45:19Z2009-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
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
<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"
>
<tlib-version>1.0</tlib-version>
<function>
<name>contains</name>
<function-class>com.Yourclass</function-class>
<function-signature>boolean contains(java.util.List,java.lang.Object)</function-signature>
</function>
</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><%@ taglib uri="WEB-INF/custom-functions.tld" prefix="fn" %>
<c:if test="${ fn:contains( mylist, myValue ) }">style='display:none;'</c:if>
</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#14766931Answer by Chii for How do you compile high-level code to get assembly code?Chii2009-09-25T11:07:45Z2009-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#14766170Answer by Chii for Grails - use a custom JSP taglibChii2009-09-25T10:48:31Z2009-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><tag>
<name>includeJs</name>
<tag-class>com.mycompany.taglib.IncludeJsTag</tag-class>
<body-content>JSP</body-content>
<variable>
<name-given>it</name-given>
<variable-class>java.lang.Object</variable-class>
<declare>true</declare>
<scope>AT_BEGIN</scope>
</variable>
<dynamic-attributes>true</dynamic-attributes>
</tag>
</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><%@ taglib prefix="jct" uri="/WEB-INF/tld/jsp-custom-tags.tld"%></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-dbComment by Chii on Serve JSP stored in DBChii2009-12-03T13:47:24Z2009-12-03T13:47:24Zwhy 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-jsonComment by Chii on Creating object to get expected JsonChii2009-11-25T09:33:34Z2009-11-25T09:33:34Zperhaps you should try it?http://stackoverflow.com/questions/1795496/java-generics-comparisonComment by Chii on Java Generics comparisonChii2009-11-25T08:53:34Z2009-11-25T08:53:34Zcan 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#1790053Comment by Chii on What can I do to make jar / classes smaller?Chii2009-11-25T08:50:31Z2009-11-25T08:50:31Zthese 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#1790147Comment by Chii on Custom JSP tag - detect existence of other instancesChii2009-11-25T08:48:04Z2009-11-25T08:48:04Zindeed 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#1782616Comment by Chii on With Java reflection how to instantiate a new object, then call a method on it?Chii2009-11-23T12:31:18Z2009-11-23T12:31:18Zyou 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#1778991Comment by Chii on Using g.render in a grails serviceChii2009-11-23T12:23:15Z2009-11-23T12:23:15Zwith 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#1768541Comment by Chii on using javascript find the height a div is going to take before it is rendered Chii2009-11-23T12:20:28Z2009-11-23T12:20:28Zwhat 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-nullComment by Chii on Using final object in anonymous inner class results in nullChii2009-11-23T11:11:34Z2009-11-23T11:11:34Ztheres 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#95885Comment by Chii on Best web front-end for SVN?Chii2009-11-19T15:16:50Z2009-11-19T15:16:50Zbest 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-javaComment by Chii on How to develop a customized browser with java?Chii2009-11-19T10:35:06Z2009-11-19T10:35:06Zi 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/arrayindexoutofboundsexceptionComment by Chii on ArrayIndexOutOfBoundsExceptionChii2009-11-19T08:29:58Z2009-11-19T08:29:58Zyou 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#1748513Comment by Chii on Can i do this in Java?Chii2009-11-17T13:25:18Z2009-11-17T13:25:18Zan explanation would be good lol!http://stackoverflow.com/questions/1741037/problem-with-valueof-converting-a-char-to-character-in-javaComment by Chii on problem with valueOf(), converting a char to Character in JavaChii2009-11-16T09:31:34Z2009-11-16T09:31:34Zcan 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-equivalentComment by Chii on Assert that two java beans are equivalentChii2009-11-16T09:29:39Z2009-11-16T09:29:39Zyou 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/…</a>