selectTag 수정완료

This commit is contained in:
hylee 2024-05-21 10:06:25 +09:00
parent e2431c4672
commit 022a6e358f

View File

@ -205,7 +205,7 @@ public class SelectTag extends SimpleTagSupport {
if (codeList != null) { if (codeList != null) {
for (CmmnDetailCode code : codeList) { for (CmmnDetailCode code : codeList) {
String cd = code.getCode(); String cd = code.getCode();
System.out.println("cd : "+ cd); // System.out.println("cd : "+ cd);
boolean flag = true; boolean flag = true;
// 포함하는코드가 존재한다면.. // 포함하는코드가 존재한다면..
if(CollectionUtils.isNotEmpty(includeSet)){ if(CollectionUtils.isNotEmpty(includeSet)){
@ -234,11 +234,14 @@ public class SelectTag extends SimpleTagSupport {
} }
} }
} }
tag.append("\n\t </select>");
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
System.out.println("Exception Occured!!!"); System.out.println("Exception Occured!!!");
} }
// System.out.println("tag.toString() :: \n" + tag.toString());
out.print(tag.toString()); out.print(tag.toString());
} }