jsp에서 프로퍼티값 표시하기

  • Post author:
  • Post category:Java

jsp에서 properties 파일의 값을 표시하기 원할때가 있음.jsp 에서 바로 호출하여 표시할 수가 있음. config.properites 파일 내용 devmode=[dev] 스프링 xml 에 property-placeholder 를 정의한다. <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"…

Continue Readingjsp에서 프로퍼티값 표시하기

Springframework 에서 jquery ajax 사용시 한글깨짐 문제…

  • Post author:
  • Post category:Java

Springframework 에서 jquery ajax 사용시 한글이 깨질때가 있음.. 특히 리눅스에서 운영하면 한글로 잘 나오는데 윈도우에서 개발하면 한글이 안나올때가 있어 난감했음... requestMapping에 produces를 추가하면 됨... ㅠ.ㅠ @RequestMapping(value = "/test", produces =…

Continue ReadingSpringframework 에서 jquery ajax 사용시 한글깨짐 문제…