Re: Be more generic for tld checking in the Compiler.isOutDated()

2012-08-02 Thread Ivan
Any comment for this ? Now, the JSP file will be recompiled each time even no change is done. The most reason is that, e.g. a file:// URL is used for TLD file. 2012/8/1 Ivan > Hi, while checking whether the JSP file is out of date in the > Compiler.isOutDated(), the codes will check whether ther

Be more generic for tld checking in the Compiler.isOutDated()

2012-08-01 Thread Ivan
Hi, while checking whether the JSP file is out of date in the Compiler.isOutDated(), the codes will check whether there is any update for the tld files used in JSP. Now, the codes are like below : Iterator> it = depends.entrySet().iterator(); while (it.hasNext()) { Entry inclu