본문 바로가기
반응형

개발111

[HeidiSQL] 단축키 ENTER 안됨 / 임시 방편 이전에 HeidiSQL 단축키 설정방법을 포스팅 한 적이 있는데 오늘 댓글로 단축키에 ENTER가 입력되지 않는다는 제보를 받았다 HeidiSQL 포럼에 들어가서 찾아보니 몇 개 안되는 글이지만 관련 글을 찾아볼 수 있었다 # 원인 단축키 ENTER 입력이 안되는 정확한 원인은 모르겠지만.. 현상은 11 버전이후로 발생하고 있다라는 점을 발견..ㅠㅠ (대체 왜이러는거지요...?) https://www.heidisql.com/forum.php?t=37337#p38684 Cannot set shortcut to Ctrl-ENTER yes sir, acknowledged that it is a question, but then it is contradictory... if the F9 was already a.. 2022. 1. 24.
[VSCode] Junit 라이브러리 직접 추가 / 테스트 실행 방법 # 라이브러리 직접 추가(빌드 툴 안 쓸 경우) JUnit4 아래 jar를 다운로드 후 classpath에 추가 junit.jar Maven Central Repository Search search.maven.org hamcrest-core.jar Maven Central Repository Search search.maven.org JUnit5 https://repo1.maven.org/maven2/org/junit/platform/junit-platform-console-standalone/1.8.2/junit-platform-console-standalone-1.8.2.jar 불러오는 중입니다... * classpath에 추가하는 방법 1) JAVA PROJECTS를 열고 Referenced Li.. 2022. 1. 22.
[VSCode] Gradle 프로젝트에서 Junit 추가 # Gradle build.gradle 파일에 추가 JUnit4 plugins { java } dependencies { testImplementation('junit:junit:(YOUR_JUNIT_VERSION)') } JUnit5 plugins { id 'java' id 'eclipse' // optional (to generate Eclipse project files) id 'idea' // optional (to generate IntelliJ IDEA project files) } repositories { mavenCentral() } dependencies { testImplementation(platform('org.junit:junit-bom:5.8.2')) testImplementa.. 2022. 1. 22.
[VSCode] maven 프로젝트에서 Junit 추가 이전에 VSCode에서 Java Test Runner 사용해서 테스트하는 방법을 포스팅했었다 근데 생각해보니까 초보개발자분들은 Junit 라이브러리를 추가하는 방법을 모를 수도 있겠단 생각이 들어서 급 포스팅! https://allonsyit.tistory.com/24 [VSCode] JUnit 사용하기 / Test Report 창 다시 열기 https://code.visualstudio.com/docs/java/java-testing Java Unit Tests in Visual Studio Code See how you can test your Java code in Visual Studio Code. code.visualstudio.com VSCode에서 Java를 사용할때.. allonsyit.t.. 2022. 1. 22.
[Git] .ignore 반영 안 될 때 캐시 삭제하는 방법 .ignore 수정해도 반영이 안 될 때 캐시를 삭제하면 된다 repository 경로에서 아래 명령어를 실행한다 git rm -r --cached . git add . git commit -m "캐시 삭제" 2022. 1. 21.
[Spring Security] 요청 권한 설정 / HttpMethod, url 패턴으로 접근 권한 관리 WebSecurityConfigurerAdapter 상속 & configure 오버라이드 # 권한 체크할 패턴 적용 방법 - antMatchers() 1. HttpMethod 로 권한 체크 antMatchers(HttpMethod.POST) 2. HttpMethod + url 패턴(문자열 가변인수)으로 권한 체크 antMatchers(HttpMethod.GET, "/api/products/**", "/api/abc/**") 3. url 패턴(문자열 가변인수)으로 권한 체크 antMatchers("/api/products/**", "/api/abc/**") # 권한 체크 방법 - antMatchers 뒤에 호출 1. hasRole(String role) - USER, ADMIN 등 지정한 역할 허용(앞에 .. 2022. 1. 21.