
kr.kyg.utils.spring.web.servlet.view.XmlView Maven / Gradle / Ivy
Show all versions of spring Show documentation
/**
* The MIT License (MIT) Copyright © 2018 Kim Younggeon
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software
* and associated documentation files (the “Software”), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge, publish, distribute,
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
*
The above copyright notice and this permission notice shall be included in all copies or
* substantial portions of the Software.
*
*
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package kr.kyg.utils.spring.web.servlet.view;
import kr.kyg.utils.common.parser.XMLManager;
import org.apache.commons.io.IOUtils;
import org.springframework.web.servlet.view.AbstractView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.StringReader;
import java.io.Writer;
import java.util.*;
/**
* Map을 XML 형식으로 변환하여 출력하는 뷰
*
* @author 김용건
* @since 2018-07-04
*/
public class XmlView extends AbstractView {
@Override
protected void renderMergedOutputModel(Map model, HttpServletRequest request, HttpServletResponse response) throws Exception {
XMLManager xml = new XMLManager("data");
response.setContentType("application/xml;charset=UTF-8");
Writer os = response.getWriter();
IOUtils.copy(new StringReader(xml.serialize(model)), os);
os.flush();
os.close();
}
}