일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- tomcat log
- oracle group by
- js 자동완성
- 주식 양도세 신고방법
- katalon xpath
- recursion example
- bfs 미로탐색 java
- 재귀 예제
- katalon 비교
- 국세청 해외주식 양도세 신고방식
- javascript 자동완성
- Katalon Recorder 사용법
- 피보나치 예제
- 재귀함수 예제
- katalon 사용법
- 한국투자증권 양도세 신고
- katalon
- java.sql.SQLSyntaxErrorException
- 최대공약수 예제
- 피보나치함수
- 피보나치함수 예제
- 톰캣 실시간 로그
- git 연동
- 해외증권 양도세 한국투자증권
- 해외주식 양도세 신고
- CSTS 폭포수 모델
- 홈택스 해외주식 양도세
- katalon 자동화
- 한국투자증권 해외주식 양도세
- 테스트 자동화
- Today
- Total
목록java (95)
엄지월드
혹은 jar 파일 export하고 import로 사용 가능하다. 1. export import 방법 - 프로젝트 우클릭 -> Configure Build Path... - Libaries 탭으로 이동 - Add External JARs... 선택 - import 할 파일 선택 - my_module_b.jar가 추가됨. - Apply and Close 버튼 클릭 파일 내에서 하는 방법 모듈 export module my_module_b { exports pack3; exports pack4; } 모듈 import module my_application_2 { requires my_module_a; requires my_module_b; }
extends WebSecurityConfigurerAdapter 부분에 취소선이 그어져 있어서 마우스를 올려보니 deprecated 되었다고 표시되고 있었다. 이게 무슨 일인가?? 공식 문서에서는 아래와 같이 보안상 사용하지 않는다는 것이었다. https://spring.io/blog/2022/02/21/spring-security-without-the-websecurityconfigureradapter In Spring Security 5.7.0-M2 we deprecated the WebSecurityConfigurerAdapter, as we encourage users to move towards a component-based security configuration. 그래서 extends W..
build.gradle 추가 implementation 'io.springfox:springfox-boot-starter:3.0.0' implementation 'io.springfox:springfox-swagger-ui:3.0.0' application.properties 추가 spring.mvc.pathmatch.matching-strategy=ant_path_matcher SwaggerConfig 추가 package com.gworld.weather.config; import io.swagger.annotations.SwaggerDefinition; import org.springframework.context.annotation.Bean; import org.springframework.cont..
새로운 프로젝트에 DB 설정에 문제가 있어서 DB를 설치하고 실행했더니 아래와 같은 에러를 만났다. SQL syntax 에러라고 뜨는데.. 나는 JPA를 사용하고 있어서 SQL을 작성한게 없다. Caused by: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'bigint, start_value ) as start_value, convert( bigint, minimum_value ) as minimu' at line 1 그래서 application.p..
Test Code 작성 시, Spring Security가 적용되어 있는 경우, 권한이 없어서 401 에러가 떳다. 그래서 mockMvc.perform(get("/board/list.do").accept(MediaType.TEXT_HTML)) @WithMockUser
Controller @GetMapping(value= {"/admin/banner/add.do", "/admin/banner/edit.do"}) public String add(Model model ) { HashMap targetList = new HashMap(); targetList.put(TARGET_BLANK, "새 창"); targetList.put(TARGET_EMPTY, "현재 창"); model.addAttribute("bannerCodeList", targetList); } Html value가 없으면 노출될 텍스트
AuthenticationSuccessHandler.java Class 추가하고 extends SavedRequestAwareAuthenticationSuccessHandler 해준다. 그 다음 onAuthenticationSuccess를 @Override 받아서 원하는 동작을 작성하면 된다. package com.myapp.lms.configuration; import com.myapp.lms.member.service.MemberService; import lombok.RequiredArgsConstructor; import org.springframework.context.annotation.Configuration; import org.springframework.security.core.Auth..
에디터 사용 시 X-Frame-Options Click jacking 공격을 막아주기 위해서 Spring Security의 configure 부분에 아래 코드를 추가해준다. http.headers().frameOptions().sameOrigin(); 전체 코드 package com.myapp.lms.configuration; import com.myapp.lms.member.service.MemberService; import lombok.RequiredArgsConstructor; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org...
1. 아래와 같이 sql id로 선언해준다. ... ... 2. sql을 사용할 곳에서 선언해준다. 3. 전체 코드 and phone like concat('%', #{searchValue}, '%') and ( user_Id like concat('%', #{searchValue}, '%') or user_Name like concat('%', #{searchValue}, '%') or phone like concat('%', #{searchValue}, '%') ) select count(*) from member where 1 = 1
@Builder를 사용하는 이유는 생성자를 여러개 만들지 않아도 선택적으로 인자를 입력할 수 있고, 필드명과 인자를 확인하여 값을 채울 수 있기 때문이다. 무슨 말이냐면 아래와 같이 인자가 여러개 있을 때, 선택적으로 입력하려면 null이나 무의미한 값을 넣어주어야 하고, 인자의 순서를 맞춰주어야 한다. public static void main(String[] args) { People people = new People( "30살", "70kg", null, 1, 2 ); } 하지만 Builder를 사용하면 아래와 같이 명시적이고 선택적으로 입력이 가능하다. public static void main(String[] args) { People people = new People().builder( ...