괜찮은 폰트 목록
구글 본고딕 (Noto Sans) Poppins Apple 산돌고딕 Neo 네이버 나눔 시리즈 제주서체(제주명조 등)
구글 본고딕 (Noto Sans) Poppins Apple 산돌고딕 Neo 네이버 나눔 시리즈 제주서체(제주명조 등)
if, foreach 등 샘플코드 <if test='cateIdList != null and cateIdList.size > 0'> cate_id in (<foreach collection="cateIdList" item="cateId" separator=", ">#{cateId}</foreach>) </if> 외따옴표, 쌍따옴표에 숨겨진 의미 https://developyo.tistory.com/242
https://blackbull.tistory.com/43
혹시 Fiddler 가 떠 있지 않은지 점검해 보자.
intellij 는 기본적으로 소스디렉토리와 배포판디렉토리의 sync 를 해 주지 않는 것 같다. 로컬 배포를 한 번 수행해 주자. (e.g. maven clean package)
※ 소스는 로컬에 있고 github에는 빈 repository 가 있을 경우 github 계정 셋팅은 이미 완료되어 있다는 가정. 프로젝트 우클릭 > Manage Remotes 에서 git full url 을 등록한다. 프로젝트 우클릭 > git > add 프로젝트 우클릭 > git > push
제어판 > 장치관리자 에 보면 ‘알 수 없는 장치(장치 설명자 요청 실패)’ 라고 느낌표 표시된 장치가 있을 건데, 해당 장치를 장치관리자에서 제거한다. 제어판 > 장치 및 프린터 에 보면 역시 해당 장치가 있을텐데 제거해 준다. 장치 새로고침이든 뭐든 해서 refresh 를 해 보자.
해당 탐색기 빈 곳에 ‘우클릭 > 분류 방법 > 없음’ 클릭
https://jangjy.tistory.com/337
Edit > General > Smart Keys > Surround selection on typing quote or brace 를 체크해제.
File | Settings | Editor | Smart Keys –> Reformat on Paste 를 none 으로 설정한다.
https://towardsdatascience.com/25-lesser-known-java-libraries-you-should-try-ff8abd354a94
https://zetawiki.com/wiki/CSS_float_%EC%9E%90%EC%8B%9D%EB%93%A4_%ED%8F%AC%ED%95%A8%ED%95%98%EA%B8%B0
[Vue.js / Typescript] Vue.js 에 타입스크립트를 적용할 때 도움이 되는 사이트
@Transient private String blabla;
* commons StringUtils.containsAny([타겟 문자열], [비교대상1], [비교대상2]..); * containsAll() 같은 건 없지만, 그거 비슷하게 구현한 메서드 public static boolean hasAndKey(String value, String… keys) { for (String key : keys) { if (value.contains(key) == false) { return false; } } return true; }
🙈[SpringBoot] Spring Security를 이용한 회원가입/로그인/로그아웃
HOTSWAP AGENT: 15:26:14.064 ERROR (org.hotswap.agent.annotation.handler.PluginClassFileTransformer) – InvocationTargetException in transform method on plugin ‘class org.hotswap.agent.plugin.hibernate.HibernatePlugin’ class ‘org/hibernate/validator/internal/metadata/BeanMetaDataManager’. java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.hotswap.agent.annotation.handler.PluginClassFileTransformer.transform(PluginClassFileTransformer.java:218) at org.hotswap.agent.annotation.handler.PluginClassFileTransformer.transform(PluginClassFileTransformer.java:112) at org.hotswap.agent.util.HotswapTransformer.transform(HotswapTransformer.java:246) at sun.instrument.TransformerManager.transform(TransformerManager.java:188) at sun.instrument.InstrumentationImpl.transform(InstrumentationImpl.java:428) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:763) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) at java.net.URLClassLoader.access$100(URLClassLoader.java:73) at java.net.URLClassLoader$1.run(URLClassLoader.java:368) at java.net.URLClassLoader$1.run(URLClassLoader.java:362) at java.security.AccessController.doPrivileged(Native Method) at… Read More »
인텔리제이 JRebel 을 대체할 DCEVM + HotSwap 설치&사용방법 기타 참고 hotswap 설정 완료 후 recompile (Ctrl+Shift+F9)로 적용시점을 앞당길 수 있다.