본문 바로가기

springboot4

[Redis] 우분투 환경에서 Redis 설정하기 Redis 설치를 하지 않으신 분은 아래 링크로 들어가서 먼저 설정해주세요. 2024.01.30 - [Web Programming/DB] - [Redis] 윈도우 환경에서 redis 설치/실행하기 [Redis] 윈도우 환경에서 redis 설치/실행하기 윈도우 설치 Redis 공식문서입니다. https://redis.io/docs/install/install-redis/install-redis-on-windows/ Install Redis on Windows Use Redis on Windows for development redis.io 레디스 공식문서에는 위처럼 사용하면 된다라고 써 jaey0ng.tistory.com 설치가 완료되었다는 가정하에 설명 진행하겠습니다. 환경설정 파일 진입 sudo nan.. 2024. 1. 30.
[Kendo Vue + SpringBoot + Oracle] 동적인 메뉴 아코디언 만들기(Creating a dynamic menu accordion) kendo Vue의 treelist를 이용하여 만드는 예제입니다. https://www.telerik.com/kendo-vue-ui/components/treelist/get-started/ Vue TreeList Component Getting Started - Kendo UI for Vue Docs & Demos vue 2.6.11 or 3.0.0Contains the functionality necessary to define Vue components.@progress/kendo-licensingContains the internal infrastructure related to licensing.@progress/kendo-svg-iconsContains the SVG icons for the .. 2024. 1. 3.
[SpringBoot] Controller, Service, Dao 등과 Mapper(Mybatis) 의 type 관계 (오류해결) / CRUD 중 R이 예시 먼저.. 제가 오류가 난 상황을 설명드리겠습니다 Controller, Service, Dao에 public String selGridList() { return gridService.selGridList(); } 이런식으로 String으로 선언을 해줬습니다 하지만 Mapper에는.... 제가 이런식으로 선언을 했더군요.... Mapper의 resultType과 Controller, Service, Dao의 String 부분의 타입이 같아야했는데 아무생각없이 개발하고 있었더라구요.. Controller.java @RequestMapping(value= "/grid", method = RequestMethod.GET) public Map selGridList() { return gridService.selG.. 2023. 11. 28.
[Kendo UI + Spring Boot] whitelabel error page 404 에러 해결방법 (2가지 방법) 위 에러가 난 이유는 에러 페이지를 선언하지 않아서 나는 에러입니다. src/main/resources/static 안에 error 폴더를 만들어줍니다. error 폴더 안에 4xx.html , 5xx.html 파일을 만들어줍니다. 내용은 400번대 에러입니다. 대충 이런식으로 작성하면 위 에러가 아닌 400번대 에러입니다. 라는 문구가 보이게 됩니다. 2번째 방법입니다. 링크를 눌렀는데 에러가 난 경우에는 exam 이렇게 선언하셨을 겁니다. vue는 index.js 에다가 주소를 추가해줘야합니다. import ExamGrid from "../view/ExamGrid"; const routes = [ { path: "/ExamGrid", name: "ExamGrid", component: ExamGrid.. 2023. 11. 21.