본문 바로가기
반응형

전체 글293

[Spring MVC] IntelliJ 에서 프로젝트 생성(4) - Tomcat 연결 이전글https://greed-yb.tistory.com/296 [Spring MVC] IntelliJ 에서 프로젝트 생성(3) - 폴더 구조이전글https://greed-yb.tistory.com/295 [Spring MVC] IntelliJ 에서 프로젝트 생성(2) - 설정이전글https://greed-yb.tistory.com/294 [Spring MVC] IntelliJ 에서 프로젝트 생성(1) - 생성1. 프로젝트 생성 1. 프로젝트 명2. JDKgreed-yb.tistory.com     https://tomcat.apache.org/download-90.cgi Apache Tomcat® - Apache Tomcat 9 Software DownloadsWelcome to the Apache T.. 2024. 10. 4.
[Spring MVC] IntelliJ 에서 프로젝트 생성(3) - 폴더 구조 이전글https://greed-yb.tistory.com/295 [Spring MVC] IntelliJ 에서 프로젝트 생성(2) - 설정이전글https://greed-yb.tistory.com/294 [Spring MVC] IntelliJ 에서 프로젝트 생성(1) - 생성1. 프로젝트 생성 1. 프로젝트 명2. JDK 버전 선택3. webapp 선택4. groupId 변경하고 싶으면 변경   2. 생성시 기본 구조grgreed-yb.tistory.com     1. java 폴더 생성src/main/ 하위로 폴더 생성 클릭  java 선택   프로젝트 생성 시 입력한 groupId 와 ArtifactId 명으로 폴더 구조를 생성예) org/example/Test    2. Controller, Servi.. 2024. 10. 4.
[Spring MVC] IntelliJ 에서 프로젝트 생성(2) - 설정 이전글https://greed-yb.tistory.com/294 [Spring MVC] IntelliJ 에서 프로젝트 생성(1) - 생성1. 프로젝트 생성 1. 프로젝트 명2. JDK 버전 선택3. webapp 선택4. groupId 변경하고 싶으면 변경   2. 생성시 기본 구조greed-yb.tistory.com  1. pom.xml 4.0.0 org.example TestTest war 1.0-SNAPSHOT TestTest Maven Webapp http://maven.apache.org 17 17 5.3.30 org.springframework spring-context ${spring.version} .. 2024. 10. 4.
[Spring MVC] IntelliJ 에서 프로젝트 생성(1) - 생성 1. 프로젝트 생성 1. 프로젝트 명2. JDK 버전 선택3. webapp 선택4. groupId 변경하고 싶으면 변경   2. 생성시 기본 구조 2024. 10. 4.
Oracle - NVL , NVL2 함수 사용 NVL 함수는 대상 '컬럼'에 값이 null 일 경우 다른 값으로 변환해주는 함수다NVL2 함수는 첫 번째 인수가 null 이 아니면 두 번째 인수를, null 이라면 세 번째 인수를 반환한다예) NVLSELECT A , NVL(B , 0) FROM DUAL예) NVL2SELECT A , NVL2(B , 'null 이 아닐때' , 'null 일때') FROM DUAL- SELECT 1 , NVL2(2 , 'null 이 아닐때' , 'null 일때') FROM DUAL   문제는 데이터 자체가 조회가 안될 때 값을 표현해야 할 때가 있다예) NVLSELECT A , NVL(MAX(B) , 0) FROM DUALSELECT A , NVL(MIN(B) , 0) FROM DUALMAX 또는 MIX을 사용하면 임.. 2024. 9. 26.
[SpringBoot] Security + JWT(Access , Refresh) - Controller 이전글https://greed-yb.tistory.com/291 [SpringBoot] Security + JWT(Access , Refresh) - Handler이전글https://greed-yb.tistory.com/290 [SpringBoot] Security + JWT(Access , Refresh) - JwtAuthenticationFilter이전글https://greed-yb.tistory.com/289 [SpringBoot] Security + JWT(Access , Refresh) - JwtTokenUtil이전글https://greed-yb.tistory.com/2greed-yb.tistory.com  controller.classimport com.example.practice.secur.. 2024. 9. 25.
반응형