250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- SpringBoot
- JDBC
- PostgreSQL
- MySQL
- Open Source
- spring
- ubuntu
- Source
- AJAX
- oracle
- Tomcat
- STS
- error
- 문서
- jpa
- Core Java
- MSSQL
- myBatis
- 설정
- 오픈소스
- IntelliJ
- Exception
- Docker
- Eclipse
- Thymeleaf
- Python
- maven
- Spring Boot
- git
- JavaScript
Archives
- Today
- Total
헤르메스 LIFE
[전자정부프레임워크] EgovPropertyServiceImpl 본문
728x90
context-properties.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
<bean name="propertiesService"
class="egovframework.rte.fdl.property.impl.EgovPropertyServiceImpl"
destroy-method="destroy">
<property name="properties">
<map>
<entry key="currentPageNo" value="1" />
<entry key="recordCountPerPage" value="30" />
<entry key="pageSize" value="10" />
<entry key="urlSuffix" value=".do" />
</map>
</property>
</bean>
</beans>
@Controller 에서 사용의 예
@Resource( name = "propertiesService" )
EgovPropertyService propertiesService;
.
.
.
logger.debug( "propertyService.currentPageNo :: {}", propertiesService.getString( "currentPageNo" ) );
@Resource를 사용해서 사용할 수 있습니다.
"context-properties.xml"에서 설정된 "propertiesService" 라는 이름으로 무조건 사용해야 합니다.
728x90
'Spring Framework' 카테고리의 다른 글
[Spring] Spring + MyBatis 에러처리 (0) | 2020.12.21 |
---|---|
[Spring] log4jdbc-remix 를 이용한 쿼리 로그 출력하기 (0) | 2020.12.06 |
Spring Security on REST API 구축 실패기...!!! (0) | 2016.08.24 |
Spring + JSON 설정 시 유의사항 (0) | 2016.08.16 |
[Source] HTML Parsing Source (0) | 2016.03.29 |