[링크] JWT (Json Web Token) 관련 정보
https://sanghaklee.tistory.com/47
https://sanghaklee.tistory.com/47
https://yoshikixdrum.tistory.com/200
폴더 우클릭 > 속성 > 사용자 지정 > ‘다음에 대해 이 폴더 최적화 항목’을 ‘일반 항목’ 으로 변경한다.
1. pom.xml <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <!– Spring 혹은 Terasoluna 에 최신버전이 내장되어 있어서 버전을 지정하지 않았었음. 아마 2.10.x 버전인듯 –> </dependency> 2. ehcache.xml <?xml version=”1.0″ encoding=”UTF-8″?> <ehcache xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”http://ehcache.org/ehcache.xsd” updateCheck=”false”> <!– * 속성 설명 (출처: https://javacan.tistory.com/entry/133) – maxElementsInMemory: 메모리에 저장될 수 있는 객체의 최대 개수 (필수) – eternal: 이 값이 true이면 timeout 관련 설정은… Read More »
https://news.naver.com/main/ranking/read.nhn?mid=etc&sid1=111&rankingType=popular_day&oid=028&aid=0002489916&date=20200319&type=1&rankingSeq=10&rankingSectionId=103
원래는 이클립스의 Run/Debug 내의 각 Test profile에서 VM arguments 에 셋팅을 한다고 생각했었으나, Spring Boot 의 경우에는 application.properties 의 설정이 우선하는 것을 알게 됨. * application.properties 샘플 logging.config=classpath:logback-custom.xml
https://kys544.tistory.com/316
http://blog.stevenlevithan.com/archives/date-time-format * 용례) ‘201910101458125’ => new Date().format(‘yyyymmddHHMMssl’);
https://stackoverflow.com/questions/276927/can-i-concatenate-multiple-mysql-rows-into-one-field
https://github.com/coreui/coreui-icons
https://www.extendoffice.com/documents/excel/4321-excel-activate-hyperlinks.html
* table 태그에 아래의 스타일 추가 table-layout:fixed * td 태그에 아래의 스타일 추가 word-wrap:break-word
https://brunch.co.kr/@imagineer/215
https://stackoverflow.com/questions/21925992/chrome-devtools-devices-does-not-detect-device-when-plugged-in
bootstrap 4.1 기준으로, .modal-dialog 클래스가 있는 엘리먼트에 modal-dialog-centered 클래스를 추가해 주면 된다.
iptables 명령을 통한 port redirection 80 → 8080 sudo iptables -A PREROUTING -t nat -i ens4 -p tcp –dport 80 -j REDIRECT –to-port 8080 443 → 8443 sudo iptables -A PREROUTING -t nat -i ens4 -p tcp –dport 443 -j REDIRECT –to-port 8443 tomcat server.xml 에 ssl 관련 설정 적용 <Connector port=”8443″ protocol=”org.apache.coyote.http11.Http11NioProtocol” SSLEnabled=”true” maxThread=”150″… Read More »
웹 폰트 사용과 최적화의 최근 동향
– 출처: https://bigzero37.tistory.com/23 – svn 에서 git 으로 바꾼지 얼마 안되었는데 push 할 때 자꾸 github 계정과 암호를 물어본다… store secure 옵션을 체크하면 자꾸 에러가 나서 그냥 하다가 짜증 폭발…..구글링 했다.. 이클립스에서 Windows -> Preferences ->General -> Security ->Secure Storage 에 들어가면 Password 탭이 있는데 거기서 중간에 Description 에서 UI Prompt 를 선택하고 Change Password… Read More »
http://iptime.com/iptime/?page_id=67&uid=7433&mod=document
https://www.danhendricks.com/2018/04/adding-iphone-galaxy-chrome-mobile-emulated-devices/