본문 바로가기

분류 전체보기

Spring Security 설정. - Spring-security-3.1.0.RC2로 작업. - 일반적인 Spring 설정은 제외. web.xml contextConfigLocation classpath*:/applicationContext*.xml ... ... springSecurityFilterChain org.springframework.web.filter.DelegatingFilterProxy springSecurityFilterChain /* applicationContext-security.xml MemberManager.java public interface MemberManager extends UserDetailsService{ // 구현하고픈 메서드 } MemberManagerImpl.java @Service("mem..
Ubuntu 포트 확인 nmap -v IP nmap이 없다면 sudo apt-get install nmap으로 설치.
[2011-05-26] Spring Security 설정 오류. Spring Security 3.1.0.RC2는 최소 Spring 3.0.5 and Java 5가 무조건 필요하다. Spring Security 3..0.5 는 최소 Spring 3.0.3 and Java 5가 무조건 필요하다. 위 두개를 간과하고 설정하다가 하루종일 삽질만 해댔다. sec 버전은 3.1인데 프로젝트 Spring 버전은 3.0.2 requirement 조차 맞추지 못하고 급하게 시작한 결과는 삽질. 필요 버전으로 업데이트 하고 다시 설정하니 오류가 안난다.
[펌] ivy vs maven 2 비교 자료 예전에 ivy를 사용한 경험이 있는데 요새 뉴스거리에 가끔 maven이 올라 오길래 검색해보았다. maven을 사용해 본 경험이 없어 비교하기가 그랬으나 누군가 경험적 비교를 해놔서 살펴보니.. 난 ivy가 좋을 것 같다... 우스갯소리로 ivy는 dependency 추가가 한줄인데 maven은 5줄이상이다... 여기에서 부터 호불호가 갈렸다;; 경험을 바탕으로 간단히.. maven(maven2) vs ivy 장단점 비교를 해보겠습니다. - 의존성 다운로드 1) ivy : 선택에 의해서 다운로드 가능. 해당 jar외엔 아무것도 받지 않겠다라고 쓸 수 있음. 명시적인 lib 관리 가능 2) maven : 불필요한 jar도 다운받을 수 있습니다. 쓰지 않더라도 선언때문에 다운 받을 수 있고, 상황에 따라서는..
DIMM, RDIMM 등 DIMM : Dual In-Line Memory Module 메모리 칩을 담고 있는 회로 보드. 이 모듈은 마더보드의 메모리 소켓과 인터페이스를 이루도록 설계됨. RDIMM : Registred Dual In-line Memory Module 서버와 워크스테이션 용으로 주로 사용되는 D램 모듈. 제어신호(Control Signal)를 위한 레지스터가 존재한다. 단일 랭크 DIMM 단일 랭크 DIMM은 오래 전부터 사용된 메모리 형태로서 메모리 모듈이 DIMM 쌍당 하나의 랭크(또는 메모리 집합)를 처리합니다. 단일 랭크 DIMM은 1:1 랭크-모듈 비율을 사용하기 때문에 확장성이 매우 높지만 모든 메모리 슬롯이 채워졌을 때만 최대 성능을 제공합니다. 예를 들어, 6개의 메모리 슬롯을 가진 Dell 280..
[Ubuntu] SVN 저장된 비번 지우기. ~/.subversion/auth/svn.simple/ 디렉토리에 보면 여러 파일들이 들어 있다. 이 파일들을 열어서 서버에 접속한 기록과 일치하는것이 있다면, 삭제
JSF - executePhase(RENDER_RESPONSE 6,com.sun.faces.context.FacesContextImpl@1ae6456) threw exception http://www.coderanch.com/t/414767/JSF/java/Faces-Exception-Hello-world-ish There is either a bug in the old JSF implementation or you configured the stuff the wrong way. First upgrade your JSF implementation to the latest available at their homepage (currently 1.2_10) and see if it solves the problem. If it doesn't, then please paste the new stacktrace here along with your faces-config.xml. 1.2 ..
Tomcat console encoding. Tomcat의 console encoding 변경 방법. 시스템 인코딩과 톰캣 인코딩이 안맞아서 로그가 다 깨져버리는 경우 Server side 언어가 분명 한글로 처리하여 DB에 쿼리를 날리는데 한글이 다 깨져서 날아가는 경우.. 1. window에서.. 해당 부분을 바꿔주면 된다. 또는 해당 부분에 직접 적어줘도 된다. -Dfile.encoding=euc-kr -Dclient.encoding.override=euc-kr 마찬 가지로 해당 부분에 아래 옵션을 넣어준다. -Dfile.encoding=euc-kr -Dclient.encoding.override=euc-kr 참조할만한 사이트 : http://quri.egloos.com/1589989