본문 바로가기
728x90

Spring15

스프링(Spring)에서 no cache 설정하기 스프링(Spring)에서 no cache 설정하기 스프링(Spring)에서 no cache 설정하기 프로그래밍/스프링 프레임워크(Spring Framework) 설정 스프링 3.0.5 기준으로 설명하겠다. 로그아웃 처리 이후 뒤로가기를 하면 별다른 설정이 없었다면 계속해서 로그인 상태로 남아있을 것이다. 이유는 브라우져가 캐쉬에 남아있는 정보를 그대로 읽어들여서 출력해주기 때문에 아직 로그인 한것처럼 보여지는 것이다. 따라서 브라우져가 정보를 읽어들일때 캐쉬를 바라보지 않고 항상 최신의 상태로 읽어들여야 한다. 이를 위해서 해당 JSP 파일 안에 다음과 같은 방법으로 기술 하라고 하였을 것이다. ? 1 2 3 4 5 6 7 8 9 하지만 위와 같은 방법이 스프링에선 먹히지 않는다. 스프링의 경우 다음과 .. 2015. 10. 8.
Custom arguments for @RequestMapping methods Custom arguments for @RequestMapping methods So, Spring MVC fans, let's say you have a @RequestMapping -annotated method in your controller, but you would like to include a custom argument, in addition to the standard ones like Model , HttpServletRequest , and HttpServletResponse . The solution is to implement a WebArgumentResolver . As an example, we'll create a CurrentDateWebArgumentResolver ;.. 2015. 10. 8.
전자정부 암호화/복호화 Encryption / Decryption 전자정부 암호화/복호화 Encryption / Decryption http://acotaus.tistory.com/7 Encryption / Decryption 분류없음 2013/01/24 18:19 1. 개요 1) 서비스 개요 - 암호화(Encryption, Ciphering)는 메시지의 내용이 불명확하도록 평문을 재구성하여 암호문을 만드는 것. 메시지의 재구성 방법을 암호화 알고리즘(Encryption Algorithm)이라고함. 암호화의 비밀성을 높이기 위해 키(Key)를 사용하기도 함. 복호화란(Decryption, deciphering)란 암호화의 역과정으로, 불명확한 메시지로부터 본래의 메시지를 환원하는 과정. - Jasypt는 오픈 소스 Java library로 개발자는 암호화 관련 깊은 지.. 2015. 10. 7.
전자정부표준프레임워크 암호화 aria 전자정부표준프레임워크 암호화 aria 현재 전자정부프레임워크 2.0.0 으로 개발 중입니다... 암호화/복호화를 개발교재에 나와 있는대로 아래와 같이 처리를 했습니다.. @Resource(name="ARIACryptoService") private EgovARIACryptoService cryptoService; private final static String password = "egovframe" String str = "Korea1234"; byte[] encrypted = cryptoService.encrypt(str.getBytes("UTF-8"), password); String encVal = new String(encrypted); System.out.prinln("encrypted = .. 2015. 10. 7.
728x90