• Y
  • List All
  • Feedback
    • This Project
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
chominsoo4245 / mjon_git star
Forked from hylee / mjon_git
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjon_gitsrcmainresourcesegovframeworkspringcomcontext-aspect.xml
Download as .zip file
File name
Commit message
Commit date
DATABASE
mjon_git
2023-06-12
src/main
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-22
.codetogether.ignore
mjon_git
2023-06-12
.gitignore
gitignore 적용
2023-06-12
pom.xml
플러그인 추가 원복
2024-02-16
File name
Commit message
Commit date
java
2차 인증 체크
2024-11-22
resources
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-22
webapp
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-22
File name
Commit message
Commit date
egovframework
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-22
log4j2.xml
mjon_git
2023-06-12
File name
Commit message
Commit date
egovProps
Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git
2024-11-22
message/com
mjon_git
2023-06-12
spring/com
mj_msg_data 백업 스케줄러 주석처리
2024-11-22
sqlmap
보안로그인 > 접속 IP관리 > 정렬 순서 수정
2024-11-22
validator
mjon_git
2023-06-12
File name
Commit message
Commit date
context-aspect.xml
mjon_git
2023-06-12
context-bbsChgHst.xml
mjon_git
2023-06-12
context-common.xml
mjon_git
2023-06-12
context-crypto.xml
mjon_git
2023-06-12
context-datasource.xml
이준호 문자온 커밋 - globals_local.properties db 접속 정보 수정 - mainPage.jsp httpredirect 함수 조건 변경
2023-07-28
context-excel.xml
mjon_git
2023-06-12
context-idgen.xml
보안로그인 진행중
2024-11-21
context-mail.xml
mjon_git
2023-06-12
context-properties.xml
mjon_git
2023-06-12
context-scheduling-sym-log-lgm.xml
mj_msg_data 백업 스케줄러 주석처리
2024-11-22
context-security.xml
mjon_git
2023-06-12
context-sqlMap.xml
mjon_git
2023-06-12
context-syslogaop.xml
mjon_git
2023-06-12
context-transaction.xml
mjon_git
2023-06-12
context-validator.xml
mjon_git
2023-06-12
hylee 2023-06-12 f34fa7b mjon_git UNIX
Raw Open in browser Change history
<?xml version="1.0" encoding="UTF-8"?> <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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd"> <!-- 내부업무의 기능 작동과정에서 Exception 발생시 후처리를 위한 AOP설정 --> <aop:config> <aop:pointcut id="serviceMethod" expression="execution(* itn.let..impl.*Impl.*(..)) or execution(* itn.com..impl.*Impl.*(..))" /> <aop:aspect ref="exceptionTransfer"> <aop:after-throwing throwing="exception" pointcut-ref="serviceMethod" method="transfer" /> </aop:aspect> </aop:config> <!-- 파라메터 로그 찍기 --> <!-- <bean id="loggerAspect" class="itn.com.cmm.aspect.LoggerAspect"></bean> <aop:config> <aop:pointcut expression="execution(* itn..*Controller.*(..))" id="loggerPointCut"/> <aop:aspect ref="loggerAspect"> <aop:around pointcut-ref="loggerPointCut" method="methodLogger"/> </aop:aspect> </aop:config> --> <!-- Exception 발생시 후처리를 위해 표준프레임워크 실행환경의 ExceptionTransfer를 활용하도록 설정--> <bean id="exceptionTransfer" class="egovframework.rte.fdl.cmmn.aspect.ExceptionTransfer"> <property name="exceptionHandlerService"> <list> <ref bean="defaultExceptionHandleManager" /> <ref bean="otherExceptionHandleManager" /> </list> </property> </bean> <!-- Exception 발생에 대한 기본Excpton처리를 위해 표준프레임워크 실행환경의 DefaultExceptionTransfer를 활용하도록 설정--> <bean id="defaultExceptionHandleManager" class="egovframework.rte.fdl.cmmn.exception.manager.DefaultExceptionHandleManager"> <property name="reqExpMatcher"> <ref bean="antPathMater"/> </property> <property name="patterns"> <list> <value>**service.impl.*</value> </list> </property> <property name="handlers"> <list> <ref bean="egovHandler" /> </list> </property> </bean> <!-- Exception 발생에 대한 기타Excpton처리를 위해 표준프레임워크 실행환경의 DefaultExceptionTransfer를 활용하도록 설정--> <bean id="otherExceptionHandleManager" class="egovframework.rte.fdl.cmmn.exception.manager.DefaultExceptionHandleManager"> <property name="reqExpMatcher"> <ref bean="antPathMater"/> </property> <property name="patterns"> <list> <value>**service.impl.*</value> </list> </property> <property name="handlers"> <list> <ref bean="otherHandler" /> </list> </property> </bean> <!-- 템플릿 내에서 Exception 발생시 실제 처리를 위한 클래스 설정--> <bean id="egovHandler" class="itn.com.cmm.EgovComExcepHndlr" /> <bean id="otherHandler" class="itn.com.cmm.EgovComOthersExcepHndlr" /> </beans>

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up