본문 바로가기
728x90

Spring15

spring 2.5 task scheduler spring 2.5 task scheduler http://www.mkyong.com/spring/spring-jdk-timer-scheduler-example/ 1. Scheduler Task Create a scheduler task… package com.mkyong.common; public class RunMeTask { public void printMe() { System.out.println("Run Me ~"); } } Spring comes with a MethodInvokingTimerTaskFactoryBean as a replacement for the JDK TimerTask. You can define your target scheduler object and method to.. 2015. 10. 7.
[Spring] AOP를 이용한 속도 측정 [Spring] AOP를 이용한 속도 측정 [Spring] AOP를 이용한 속도 측정 Spring 2014/07/09 10:26 http://blog.naver.com/platinasnow/220054761307 전용뷰어 보기 개발을 하다가 보면 가끔 특정 페이지만 특히 느린 경우가 있습니다. 이 페이지가 느린건 알겠는데 도대체 얼마나 느린지 정확한 수치로 보고 싶어졌습니다. 그렇다고 매번 소스에 박는건 아닌것 같아서 디버그 용도로 AOP를 만들었습니다. @Around("bean(*Controller)") public Object checkTime(ProceedingJoinPoint joinPoint) throws Throwable { long start = System.currentTimeMillis(.. 2015. 10. 7.
spring bean 객체 얻어오기 spring bean 객체 얻어오기 control에서 bean객체 얻어오기 1. web.xml셋팅 test2*.docontextConfigLocation/WEB-INF/applicationContext.xmlorg.springframework.web.context.ContextLoaderListener 2. HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); HttpSession session = request.getSession(); ServletContext conext = session.getServletContext(); WebApplicati.. 2015. 10. 7.
Spring 다국어 변경 Spring 다국어 변경 context-message.xml MessageSourceAccessor 에 messageSource 으로 등록이 되어 있기 때문에 spring:message tag 를 쓸 수 있습니다. text 값으로 기본 값을 줄 수 있습니다. (해당 코드나 locale의 매핑되는 값이 없다면 보여집니다.) code의 값은 groupkey.codekey 값으로 key의 형태를 지니고 있습니다. locale정보는 브라우져 정보를 기본으로 LocaleContextHolder 가 가지고 있습니다. 1 2 >< spring:message code = "jwork.common... 2015. 10. 7.
728x90