CDATA2 [JSP] Weblogic 에서 <% 같은 JSP 태그와 CDATA 를 같이 사용하면 다음의 오류가 난다. 톰캣에서 작업한 소스를 WebLogic 에 올리고 나서 이 오류 때문에 한참을 고생했다. CDATA를 제거 했는데 같이 사용할 수 있는 방법이 없나? A translation error occurred with taglib and CDATA in a JSP page, as shown in this snippet: sample.jsp : When the JSP is compiled using the weblogic.jspc compiler, here is the output: "sample.jsp": Translation of /sample.jsp failed: javax.servlet.jsp.JspException: The taglib validator rejected the page: "org.xml... 2014. 2. 20. [Java] – JDom Element 생성시 CDATA 처리 Element 를 생성해서 값을 할당할때, CDATA 객체를 생성해서 할당해 주면 된다.… import org.jdom.Element; import org.jdom.CDATA;… …… Element eleItem = new Element(“TITLE”); eleItem.addContent( new CDATA(“제목 입니다.”) );…* Element 를 생성해서 값을 할당 시, setText() 메소드를 사용할 수도 있다. 단, 이 방법으로는 CDATA 처리가 불가능하다. eleItem.setText( “제목 입니다.” ); 2013. 11. 15. 이전 1 다음