# context-properties.xml 설정 변환 > 프로퍼티 정보 설정 프로젝트 내에서 사용할 EgovPropertyService에 값을 등록 하는 예제이다. ```xml ``` ```java @Bean(destroyMethod = "destroy") public EgovPropertyServiceImpl propertiesService() { EgovPropertyServiceImpl egovPropertyServiceImpl = new EgovPropertyServiceImpl(); Map properties = new HashMap(); properties.put("pageUnit", "10"); properties.put("pageSize", "10"); properties.put("posblAtchFileSize", "5242880"); properties.put("Globals.fileStorePath", "/user/file/sht/"); properties.put("Globals.addedOptions", "false"); egovPropertyServiceImpl.setProperties(properties); return egovPropertyServiceImpl; } ```