web.xml 파일에 아래 필터를 추가하고 추가한 필터를 모든 URI에 대해 매핑하도록 설정한다.

필터가 두 개 이상인 경우 web.xml 파일 상에서 가장 위에 위치하도록 해야한다.


    <filter>

        <filter-name>encoding-filter</filter-name>

        <filter-class>

            org.springframework.web.filter.CharacterEncodingFilter

        </filter-class>

        <init-param>

            <param-name>encoding</param-name>

            <param-value>UTF-8</param-value>

        </init-param>

        <init-param>

        <param-name>forceEncoding</param-name>

        <param-value>true</param-value>

        </init-param>

    </filter>


    <filter-mapping>

        <filter-name>encoding-filter</filter-name>

        <url-pattern>/*</url-pattern>

    </filter-mapping>


var body = document.body,

    html = document.documentElement;


var height = Math.max( body.scrollHeight, body.offsetHeight, 

                       html.clientHeight, html.scrollHeight, html.offsetHeight );



출처 : http://stackoverflow.com/questions/1145850/how-to-get-height-of-entire-document-with-javascript

이니시스의 로그가 깨져 나오길래 PuTTY의 인코딩이 잘못 설정되었나 싶어, 원격 쉘의 인코딩과 설정을 동일하게 하기 위해서 찾아보았다.


터미널은 환경 변수를 통해 문자 인코딩을 설정하기 때문에 해당 환경 변수를 출력해보면 된다.

$ echo $LC_CTYPE

$ echo $LANG



혹은 locale 명령을 통해 확인할 수 있다.

$ locale charmap



출처 : http://stackoverflow.com/questions/5306153/how-to-get-terminals-character-encoding

간단하게 배치 파일을 작성할 일이 있어서 작성 중에 echo에서 줄바꿈, 혹은 공백 라인 출력을 하려고

@echo 도 해보고

@echo \n

@echo 공백

@echo ㄱ+한자+9 도 해보았으나 되지 않아 검색해보니


@echo text & echo.next line 이 정답.

도대체 추측할 수조차 없는 줄바꿈 방법이었다.


출처 : http://stackoverflow.com/questions/132799/how-can-you-echo-a-newline-in-batch-files

+ Recent posts