<?xml version="1.0" encoding="UTF-8"?>
<cmd id="cg"><loading hide="1" id="" cvr="1"/><alert cn="Unable to compile class for JSP: 

An error occurred at line: 33 in the generated java file
Only a type can be imported. com.rongji.cms.api.vo.Catalog resolves to a package

An error occurred at line: 34 in the generated java file
Only a type can be imported. com.rongji.cms.api.vo.Website resolves to a package

An error occurred at line: 39 in the generated java file
Only a type can be imported. com.rongji.dfish.remote.security.UserCacheMgr resolves to a package

An error occurred at line: 8 in the jsp file: /fpd/global.inc.jsp
Duplicate field article_jsp.PDigit
5: 	ITopService topService = ApiServiceLocator.getTopService();
6: 	FpdTypeHelper fpdTypeHelper = FpdTypeHelper.getInstance();
7: %&gt;&lt;%!
8:     public static final Pattern PDigit = Pattern.compile(&quot;^\\d*$&quot;, 34);
9:     
10:     public static boolean isEmpty(Object str) {
11: 		return (str == null) || (str.toString().trim().length() == 0);


An error occurred at line: 10 in the jsp file: /fpd/global.inc.jsp
Duplicate method isEmpty(Object) in type article_jsp
7: %&gt;&lt;%!
8:     public static final Pattern PDigit = Pattern.compile(&quot;^\\d*$&quot;, 34);
9:     
10:     public static boolean isEmpty(Object str) {
11: 		return (str == null) || (str.toString().trim().length() == 0);
12: 	}
13: 		


An error occurred at line: 14 in the jsp file: /fpd/global.inc.jsp
Duplicate method notEmpty(Object) in type article_jsp
11: 		return (str == null) || (str.toString().trim().length() == 0);
12: 	}
13: 		
14: 	public static boolean notEmpty(Object str) {
15: 		return str != null &amp;&amp; str.toString().trim().length() &gt; 0;
16: 	}
17: 	


An error occurred at line: 23 in the jsp file: /fpd/global.inc.jsp
Duplicate method isDigit(String) in type article_jsp
20: 	 * @param str 数字字符串
21: 	 * @return
22: 	 */
23: 	public static boolean isDigit(String str) {
24: 		if (isEmpty(str)) {
25: 			return false;
26: 		}


An error occurred at line: 24 in the jsp file: /fpd/global.inc.jsp
The method isEmpty(String) is undefined for the type article_jsp
21: 	 * @return
22: 	 */
23: 	public static boolean isDigit(String str) {
24: 		if (isEmpty(str)) {
25: 			return false;
26: 		}
27: 		return PDigit.matcher(str).find();


An error occurred at line: 27 in the jsp file: /fpd/global.inc.jsp
PDigit cannot be resolved
24: 		if (isEmpty(str)) {
25: 			return false;
26: 		}
27: 		return PDigit.matcher(str).find();
28: 	}
29:     
30:     /**


An error occurred at line: 35 in the jsp file: /fpd/global.inc.jsp
Duplicate method isNumb(String) in type article_jsp
32: 	 * @param id 输入的栏目id或文章id
33: 	 * @return
34: 	 */
35: 	public boolean isNumb(String id) {
36: 		boolean errorTag = true;
37: 		try {
38: 			Integer.parseInt(id);


An error occurred at line: 45 in the jsp file: /fpd/global.inc.jsp
Duplicate method isNumber2(String) in type article_jsp
42: 		return errorTag;
43: 	}
44: 
45: 	public boolean isNumber2(String str) {
46: 		if (isEmpty(str)) return false;
47: 		boolean flag = true;
48: 		for (int j = 0; j &lt; str.length(); j++) {


An error occurred at line: 46 in the jsp file: /fpd/global.inc.jsp
The method isEmpty(String) is undefined for the type article_jsp
43: 	}
44: 
45: 	public boolean isNumber2(String str) {
46: 		if (isEmpty(str)) return false;
47: 		boolean flag = true;
48: 		for (int j = 0; j &lt; str.length(); j++) {
49: 			if (!(str.charAt(j) &gt;= 48 &amp;&amp; str.charAt(j) &lt;= 57)) {


An error occurred at line: 64 in the jsp file: /fpd/global.inc.jsp
The method isEmpty(String) is undefined for the type article_jsp.FilterString
61: 		 * 过滤url中HTML,JAVASCRIPT,CSS标签	
62: 		 */
63: 		public String filterHtmlTag(String content) {
64: 			if (isEmpty(content)) return content;
65: 			String str = content.replaceAll(&quot;&lt;[^&gt;]*&gt;&quot;, &quot;&quot;);
66: 			str = str.replaceAll(&quot;%3C|3C[^%3E]*%3E|3E&quot;, &quot;&quot;);
67: 			return str;


An error occurred at line: 64 in the jsp file: /fpd/global.inc.jsp
The method isEmpty(String) is undefined for the type article_jsp.FilterString
61: 		 * 过滤url中HTML,JAVASCRIPT,CSS标签	
62: 		 */
63: 		public String filterHtmlTag(String content) {
64: 			if (isEmpty(content)) return content;
65: 			String str = content.replaceAll(&quot;&lt;[^&gt;]*&gt;&quot;, &quot;&quot;);
66: 			str = str.replaceAll(&quot;%3C|3C[^%3E]*%3E|3E&quot;, &quot;&quot;);
67: 			return str;


An error occurred at line: 32 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate field article_jsp.PDigit
29: 
30: %&gt;
31: &lt;%!
32:     public static final Pattern PDigit = Pattern.compile(&quot;^\\d*$&quot;, 34);
33:     public static final String errorPage = &quot;/res_root/fjmh/templates/error/error.jsp&quot;;
34:     
35:     public static boolean isEmpty(Object str) {


An error occurred at line: 35 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate method isEmpty(Object) in type article_jsp
32:     public static final Pattern PDigit = Pattern.compile(&quot;^\\d*$&quot;, 34);
33:     public static final String errorPage = &quot;/res_root/fjmh/templates/error/error.jsp&quot;;
34:     
35:     public static boolean isEmpty(Object str) {
36: 			return (str == null) || (str.toString().replaceAll(&quot;\\&amp;nbsp;&quot;, &quot;&quot;).trim().length() == 0);
37: 		}
38: 		


An error occurred at line: 39 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate method notEmpty(Object) in type article_jsp
36: 			return (str == null) || (str.toString().replaceAll(&quot;\\&amp;nbsp;&quot;, &quot;&quot;).trim().length() == 0);
37: 		}
38: 		
39: 	  public static boolean notEmpty(Object str) {
40: 			return (str != null &amp;&amp; str.toString().replaceAll(&quot;\\&amp;nbsp;&quot;, &quot;&quot;).trim().length() &gt; 0);
41: 		}
42: 	


An error occurred at line: 48 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate method isDigit(String) in type article_jsp
45: 	 * @param str 数字字符串
46: 	 * @return
47: 	 */
48: 	public static boolean isDigit(String str) {
49: 		if (isEmpty(str)) {
50: 			return false;
51: 		}


An error occurred at line: 49 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
The method isEmpty(String) is undefined for the type article_jsp
46: 	 * @return
47: 	 */
48: 	public static boolean isDigit(String str) {
49: 		if (isEmpty(str)) {
50: 			return false;
51: 		}
52: 		return PDigit.matcher(str).find();


An error occurred at line: 52 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
PDigit cannot be resolved
49: 		if (isEmpty(str)) {
50: 			return false;
51: 		}
52: 		return PDigit.matcher(str).find();
53: 	}
54:     
55:     /**


An error occurred at line: 60 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate method isNumb(String) in type article_jsp
57: 	 * @param id 输入的栏目id或文章id
58: 	 * @return
59: 	 */
60: 	public boolean isNumb(String id) {
61: 		boolean errorTag = true;
62: 		try {
63: 			Integer.parseInt(id);


An error occurred at line: 70 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate method isNumber2(String) in type article_jsp
67: 		return errorTag;
68: 	}
69: 
70: 	public boolean isNumber2(String str) {
71: 		boolean flag = true;
72: 		for (int j = 0; j &lt; str.length(); j++) {
73: 			if (!(str.charAt(j) &gt;= 48 &amp;&amp; str.charAt(j) &lt;= 57)) {


An error occurred at line: 83 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate nested type FilterString
80: 		return flag;
81: 	}
82: 
83: 	public class FilterString {
84: 		/*
85: 		 * 过滤url中HTML,JAVASCRIPT,CSS标签	
86: 		 */


An error occurred at line: 372 in the generated java file
Syntax error, insert &quot;}&quot; to complete ClassBody

An error occurred at line: 23 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable articleService
20: &lt;%@ page import=&quot;com.rongji.dfish.remote.security.UserCacheMgr&quot;%&gt;
21: 
22: &lt;%
23: 	IArticleService articleService = ApiServiceLocator.getArticleService();
24: 	IWebSiteService siteService = ApiServiceLocator.getWebSiteService();
25: 	ICatalogService catalogService = ApiServiceLocator.getCatalogService();
26: 	ITopService topService = ApiServiceLocator.getTopService();


An error occurred at line: 24 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable siteService
21: 
22: &lt;%
23: 	IArticleService articleService = ApiServiceLocator.getArticleService();
24: 	IWebSiteService siteService = ApiServiceLocator.getWebSiteService();
25: 	ICatalogService catalogService = ApiServiceLocator.getCatalogService();
26: 	ITopService topService = ApiServiceLocator.getTopService();
27: 	IPubMessagesService messagesService = ApiServiceLocator.getPubMessagesService();


An error occurred at line: 25 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable catalogService
22: &lt;%
23: 	IArticleService articleService = ApiServiceLocator.getArticleService();
24: 	IWebSiteService siteService = ApiServiceLocator.getWebSiteService();
25: 	ICatalogService catalogService = ApiServiceLocator.getCatalogService();
26: 	ITopService topService = ApiServiceLocator.getTopService();
27: 	IPubMessagesService messagesService = ApiServiceLocator.getPubMessagesService();
28: 	IFrendLinkService friendLinkService = ApiServiceLocator.getFrendLinkService();	


An error occurred at line: 26 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable topService
23: 	IArticleService articleService = ApiServiceLocator.getArticleService();
24: 	IWebSiteService siteService = ApiServiceLocator.getWebSiteService();
25: 	ICatalogService catalogService = ApiServiceLocator.getCatalogService();
26: 	ITopService topService = ApiServiceLocator.getTopService();
27: 	IPubMessagesService messagesService = ApiServiceLocator.getPubMessagesService();
28: 	IFrendLinkService friendLinkService = ApiServiceLocator.getFrendLinkService();	
29: 


An error occurred at line: 177 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable userId
174: 		//out.print(&quot;&lt;script&gt;alert(&#39;&quot;+new Date()+&quot;&#39;)&lt;/script&gt;&quot;);
175: 	%&gt;
176: 	&lt;%
177: 	String userId = (String) request.getSession().getAttribute(FrameworkConstants.LOGIN_USER_KEY);
178: 	String username = UserCacheMgr.getInstance().getUserNameById(userId);
179: 	String path = request.getRequestURI();
180: 	//if(path != null &amp;&amp; path.split(&quot;/cms/res_root/fjmh&quot;).length&gt;1){


An error occurred at line: 178 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable username
175: 	%&gt;
176: 	&lt;%
177: 	String userId = (String) request.getSession().getAttribute(FrameworkConstants.LOGIN_USER_KEY);
178: 	String username = UserCacheMgr.getInstance().getUserNameById(userId);
179: 	String path = request.getRequestURI();
180: 	//if(path != null &amp;&amp; path.split(&quot;/cms/res_root/fjmh&quot;).length&gt;1){
181: 		//path=path.split(&quot;/cms/res_root/fjmh&quot;)[1];


An error occurred at line: 179 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable path
176: 	&lt;%
177: 	String userId = (String) request.getSession().getAttribute(FrameworkConstants.LOGIN_USER_KEY);
178: 	String username = UserCacheMgr.getInstance().getUserNameById(userId);
179: 	String path = request.getRequestURI();
180: 	//if(path != null &amp;&amp; path.split(&quot;/cms/res_root/fjmh&quot;).length&gt;1){
181: 		//path=path.split(&quot;/cms/res_root/fjmh&quot;)[1];
182: 		path=path.substring(0, path.lastIndexOf(&quot;/&quot;)+1);


An error occurred at line: 188 in the jsp file: /res_root/rjrjfwcs/templates/00000454/../include/global.inc.jsp
Duplicate local variable basePath
185: 	//	path=&quot;:&quot;+request.getServerPort()+path;
186: 	//}
187: 	//String basePath = request.getScheme()+&quot;://&quot;+request.getServerName()+path;
188: 	String basePath=&quot;http://www.rongji591.com&quot;+path;
189: 	%&gt;


An error occurred at line: 24 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
The method isDigit(String) is undefined for the type article_jsp
21: 	String arId = request.getParameter(&quot;arId&quot;);
22: 	String preview = request.getParameter(&quot;preview&quot;);
23: 	if(arId != null){
24: 		if (!isDigit(arId)) {
25: 			request.setAttribute(&quot;msg&quot;, &quot;文章ID格式不正确！&quot;);
26: 			response.setStatus(404);
27: 			return;


An error occurred at line: 83 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_nav_include.jsp
Duplicate local variable tmpOthers_iCatalog
80: 										
81: &lt;%
82: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
83: 		Vo tmpOthers_iCatalog = catalog_1361410829180;
84: 		int voLen = voList.size();
85: 		for(int _i=2-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
86: 			vo=voList.get(_i);


An error occurred at line: 84 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_nav_include.jsp
Duplicate local variable voLen
81: &lt;%
82: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
83: 		Vo tmpOthers_iCatalog = catalog_1361410829180;
84: 		int voLen = voList.size();
85: 		for(int _i=2-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
86: 			vo=voList.get(_i);
87: 			if(vo != null){


An error occurred at line: 85 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_nav_include.jsp
Duplicate local variable _i
82: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
83: 		Vo tmpOthers_iCatalog = catalog_1361410829180;
84: 		int voLen = voList.size();
85: 		for(int _i=2-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
86: 			vo=voList.get(_i);
87: 			if(vo != null){
88: 				catalog = vo;


An error occurred at line: 99 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_nav_include.jsp
Duplicate local variable vo_1_List
96: 	out.print(&quot;&lt;!-- 指定栏目start --&gt;&quot;);
97: 	timeTmp = System.currentTimeMillis();
98: 	String caId_1361410829784 = caId; caId = String.valueOf( catalog.get(&quot;caId&quot;) ); FpdTypeData fpd_1361410829784 = fpdTypeHelper.getFpdTypeData(&quot;catalog&quot;, &quot;specificCaId&quot;); DataWrapper dw_1361410829784 = fpd_1361410829784.getData(0, 30, caId, &quot;&quot;, &quot;&quot;);
99: 	Vo catalog_1361410829784 = dw_1361410829784.getChannel();	List&lt;? extends Vo&gt; vo_1_List = dw_1361410829784.getList();
100: 	catalog = catalog_1361410829784;
101: 	out.print(&quot;&lt;!-- 读取列表耗时：&quot;+(System.currentTimeMillis()-timeTmp)+&quot;毫秒	开始时间：&quot;+timeTmp+&quot; --&gt;&quot;);
102: %&gt;


An error occurred at line: 106 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
Duplicate local variable voLen
103: &lt;%
104: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
105: 		Vo _itmpCatalog = catalog_1361410827939;
106: 		int voLen = voList.size();
107: 		for(int _i=1-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
108: 			vo=voList.get(_i);
109: 			if(vo != null){


An error occurred at line: 107 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
Duplicate local variable _i
104: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
105: 		Vo _itmpCatalog = catalog_1361410827939;
106: 		int voLen = voList.size();
107: 		for(int _i=1-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
108: 			vo=voList.get(_i);
109: 			if(vo != null){
110: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 167 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
Duplicate local variable voLen
164: &lt;%
165: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
166: 		Vo _itmpCatalog = catalog_1361410828242;
167: 		int voLen = voList.size();
168: 		for(int _i=1-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
169: 			vo=voList.get(_i);
170: 			if(vo != null){


An error occurred at line: 168 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
Duplicate local variable _i
165: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
166: 		Vo _itmpCatalog = catalog_1361410828242;
167: 		int voLen = voList.size();
168: 		for(int _i=1-1; _i&lt;(5&lt;voLen?5:voLen); _i++){
169: 			vo=voList.get(_i);
170: 			if(vo != null){
171: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 278 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
Duplicate local variable voLen
275: &lt;%
276: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
277: 		Vo _itmpCatalog = catalog_1361410828848;
278: 		int voLen = voList.size();
279: 		for(int _i=0; _i&lt;voLen; _i++){
280: 			vo=voList.get(_i);
281: 			if(vo != null){


An error occurred at line: 279 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
Duplicate local variable _i
276: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
277: 		Vo _itmpCatalog = catalog_1361410828848;
278: 		int voLen = voList.size();
279: 		for(int _i=0; _i&lt;voLen; _i++){
280: 			vo=voList.get(_i);
281: 			if(vo != null){
282: 				catalog = catalog_1361410828848;


An error occurred at line: 294 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
relArticle cannot be resolved
291: 	}
292: %&gt;
293: 
294: 										&lt;dd&gt;·&lt;a href=&quot;&lt;%=relArticle.get(&quot;link&quot;)%&gt;&quot; target=&quot;_blank&quot;&gt;&lt;%=relArticle.get(&quot;title&quot;)%&gt;&lt;/a&gt; 
295: 																			&lt;/dd&gt;&lt;/dl&gt;
296: 										
297: &lt;%


An error occurred at line: 294 in the jsp file: /res_root/rjrjfwcs/templates/00000454/article.jsp
relArticle cannot be resolved
291: 	}
292: %&gt;
293: 
294: 										&lt;dd&gt;·&lt;a href=&quot;&lt;%=relArticle.get(&quot;link&quot;)%&gt;&quot; target=&quot;_blank&quot;&gt;&lt;%=relArticle.get(&quot;title&quot;)%&gt;&lt;/a&gt; 
295: 																			&lt;/dd&gt;&lt;/dl&gt;
296: 										
297: &lt;%


An error occurred at line: 21 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable tmpOthers_iCatalog
18: 							&lt;ul&gt;
19: &lt;%
20: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
21: 		Vo tmpOthers_iCatalog = catalog_1361410830095;
22: 		int voLen = voList.size();
23: 		for(int _i=0; _i&lt;voLen; _i++){
24: 			vo=voList.get(_i);


An error occurred at line: 22 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable voLen
19: &lt;%
20: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
21: 		Vo tmpOthers_iCatalog = catalog_1361410830095;
22: 		int voLen = voList.size();
23: 		for(int _i=0; _i&lt;voLen; _i++){
24: 			vo=voList.get(_i);
25: 			if(vo != null){


An error occurred at line: 23 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable _i
20: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
21: 		Vo tmpOthers_iCatalog = catalog_1361410830095;
22: 		int voLen = voList.size();
23: 		for(int _i=0; _i&lt;voLen; _i++){
24: 			vo=voList.get(_i);
25: 			if(vo != null){
26: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 69 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable tmpOthers_iCatalog
66: 							&lt;ul&gt;
67: &lt;%
68: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
69: 		Vo tmpOthers_iCatalog = catalog_1361410830399;
70: 		int voLen = voList.size();
71: 		for(int _i=0; _i&lt;voLen; _i++){
72: 			vo=voList.get(_i);


An error occurred at line: 70 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable voLen
67: &lt;%
68: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
69: 		Vo tmpOthers_iCatalog = catalog_1361410830399;
70: 		int voLen = voList.size();
71: 		for(int _i=0; _i&lt;voLen; _i++){
72: 			vo=voList.get(_i);
73: 			if(vo != null){


An error occurred at line: 71 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable _i
68: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
69: 		Vo tmpOthers_iCatalog = catalog_1361410830399;
70: 		int voLen = voList.size();
71: 		for(int _i=0; _i&lt;voLen; _i++){
72: 			vo=voList.get(_i);
73: 			if(vo != null){
74: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 117 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable tmpOthers_iCatalog
114: 							&lt;ul&gt;
115: &lt;%
116: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
117: 		Vo tmpOthers_iCatalog = catalog_1361410830703;
118: 		int voLen = voList.size();
119: 		for(int _i=0; _i&lt;voLen; _i++){
120: 			vo=voList.get(_i);


An error occurred at line: 118 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable voLen
115: &lt;%
116: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
117: 		Vo tmpOthers_iCatalog = catalog_1361410830703;
118: 		int voLen = voList.size();
119: 		for(int _i=0; _i&lt;voLen; _i++){
120: 			vo=voList.get(_i);
121: 			if(vo != null){


An error occurred at line: 119 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable _i
116: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
117: 		Vo tmpOthers_iCatalog = catalog_1361410830703;
118: 		int voLen = voList.size();
119: 		for(int _i=0; _i&lt;voLen; _i++){
120: 			vo=voList.get(_i);
121: 			if(vo != null){
122: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 165 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable tmpOthers_iCatalog
162: 							&lt;ul&gt;
163: &lt;%
164: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
165: 		Vo tmpOthers_iCatalog = catalog_1361410831007;
166: 		int voLen = voList.size();
167: 		for(int _i=0; _i&lt;voLen; _i++){
168: 			vo=voList.get(_i);


An error occurred at line: 166 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable voLen
163: &lt;%
164: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
165: 		Vo tmpOthers_iCatalog = catalog_1361410831007;
166: 		int voLen = voList.size();
167: 		for(int _i=0; _i&lt;voLen; _i++){
168: 			vo=voList.get(_i);
169: 			if(vo != null){


An error occurred at line: 167 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable _i
164: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
165: 		Vo tmpOthers_iCatalog = catalog_1361410831007;
166: 		int voLen = voList.size();
167: 		for(int _i=0; _i&lt;voLen; _i++){
168: 			vo=voList.get(_i);
169: 			if(vo != null){
170: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 213 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable tmpOthers_iCatalog
210: 							&lt;ul&gt;
211: &lt;%
212: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
213: 		Vo tmpOthers_iCatalog = catalog_1361410831310;
214: 		int voLen = voList.size();
215: 		for(int _i=0; _i&lt;voLen; _i++){
216: 			vo=voList.get(_i);


An error occurred at line: 214 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable voLen
211: &lt;%
212: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
213: 		Vo tmpOthers_iCatalog = catalog_1361410831310;
214: 		int voLen = voList.size();
215: 		for(int _i=0; _i&lt;voLen; _i++){
216: 			vo=voList.get(_i);
217: 			if(vo != null){


An error occurred at line: 215 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_after_include.jsp
Duplicate local variable _i
212: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
213: 		Vo tmpOthers_iCatalog = catalog_1361410831310;
214: 		int voLen = voList.size();
215: 		for(int _i=0; _i&lt;voLen; _i++){
216: 			vo=voList.get(_i);
217: 			if(vo != null){
218: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 18 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_footer_include.jsp
Duplicate local variable tmpOthers_iCatalog
15: 					
16: &lt;%
17: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
18: 		Vo tmpOthers_iCatalog = catalog_1361410831618;
19: 		int voLen = voList.size();
20: 		for(int _i=1-1; _i&lt;(4&lt;voLen?4:voLen); _i++){
21: 			vo=voList.get(_i);


An error occurred at line: 19 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_footer_include.jsp
Duplicate local variable voLen
16: &lt;%
17: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
18: 		Vo tmpOthers_iCatalog = catalog_1361410831618;
19: 		int voLen = voList.size();
20: 		for(int _i=1-1; _i&lt;(4&lt;voLen?4:voLen); _i++){
21: 			vo=voList.get(_i);
22: 			if(vo != null){


An error occurred at line: 20 in the jsp file: /res_root/rjrjfwcs/templates/00000454/frame_footer_include.jsp
Duplicate local variable _i
17: 	if( voList != null &amp;&amp; !voList.isEmpty() ){
18: 		Vo tmpOthers_iCatalog = catalog_1361410831618;
19: 		int voLen = voList.size();
20: 		for(int _i=1-1; _i&lt;(4&lt;voLen?4:voLen); _i++){
21: 			vo=voList.get(_i);
22: 			if(vo != null){
23: 				catalog = (Vo)vo.get(&quot;catalog&quot;);


An error occurred at line: 1,590 in the generated java file
Syntax error, insert &quot;else Statement&quot; to complete IfStatement

An error occurred at line: 1,590 in the generated java file
Syntax error, insert &quot;}&quot; to complete Block

An error occurred at line: 1,590 in the generated java file
Syntax error, insert &quot;}&quot; to complete Block

An error occurred at line: 1,590 in the generated java file
Syntax error, insert &quot;else Statement&quot; to complete IfStatement

An error occurred at line: 1,590 in the generated java file
Syntax error, insert &quot;}&quot; to complete Block

An error occurred at line: 1,601 in the generated java file
Syntax error on token &quot;}&quot;, delete this token

Stacktrace:" id="alt" pos="0" ic="img/p/alert-crack.gif" tm="5"/></cmd>