XML 썸네일형 리스트형 [PHP] Make xml 파일 makePomXml(); } private function makePomXml(){ $this->openURI($this->build_name.'.xml'); $this->setIndent(true); $this->startDocument("1.0", "UTF-8"); $this->startElement("project"); $this->writeAttribute("xmlns", "http://maven.apache.org/POM/4.0.0"); $this->writeAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance"); $this->writeAttribute("xsi:schemaLocation", "http://maven.apache... 더보기 [SpringFramework] Charset 설정. 스프링 프레임웍에서 jsp에서 post를 받을경우 한글이 깨짐.이때 해결책은 ! tomcat 서버 설정과 파일의 character set의 설정을 바꿔주면됨. Server/server.xmlConnector 부분에 URIEncoding="UTF-8"을 추가해줌. 1 2 encodingFilter 3 4 org.springframework.web.filter.CharacterEncodingFilter 5 6 7 encoding 8 UTF-8 9 10 11 12 encodingFilter 13 /* 14 더보기 이전 1 다음