나만의 개발 기록
close
프로필 배경
프로필 로고

나만의 개발 기록

  • 분류 전체보기 (263)
    • backend (140)
      • 스프링 (91)
      • 코프링 (14)
      • 자바 (33)
      • 오류모음 (2)
    • frontend (26)
      • 자바스크립트 (14)
      • JSTL (2)
      • vue.js (5)
      • 타임리프 (5)
    • 데이터베이스 (4)
      • MYSQL (4)
    • native (16)
      • 안드로이드 (16)
    • DevOps (21)
      • AWS (4)
      • 젠킨스 (2)
      • Docker (2)
      • 깃허브 (1)
    • gis (26)
      • Openlayers (4)
      • LeafletJs (19)
      • 지오서버 (3)
    • 기타 (29)
      • 소프트웨어 설치 (9)
      • 자격증 (3)
      • 개발용어 (17)
  • 홈
  • 태그
  • 방명록
2. Vue 예제 - VsCode 플러그인 사용해보기

2. Vue 예제 - VsCode 플러그인 사용해보기

이번글에서는 vue 개발에 유용한 VsCode 플러그인을 다운로드 해보고 사용해보는것을 해보겠습니다. - 먼저 VsCode를 열면 해당 버튼을 누릅니다. (Extensions) vetur 설치 - Vetur를 install 합니다. vetur를 받으면 vue 파일 하이라이팅 기능을 사용할수 있습니다. vetur 설치전 vetur 설치후 material icon 설치 - Material Icon 플러그인을 install 합니다. 아이콘 테마를 바꿀수 있습니다. material icon 적용 File - Preferences - File Icon Theme - Material Icon Theme 입력후 선택 material icon 설치전 material icon 설치후 - 아이콘 색깔이 알록달록 해졌습니다..

  • format_list_bulleted frontend/vue.js
  • · 2022. 12. 27.
  • textsms
1. vue 예제 - Vue 프로젝트 생성

1. vue 예제 - Vue 프로젝트 생성

- 본 게시글은 VsCode에서 Vue3 프로젝트를 생성하는 방법을 정리하였습니다. VsCode 설치 https://code.visualstudio.com/download 자신의 os에 맞는 vscode를 설치합니다. NodeJs 설치 https://nodejs.org/ko/ LTS 버전을 설치합니다. VueJs Devtools 설치 https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd chrome에 확장프로그램 추가하기 Vue 설치 npm install -g @vue/cli Vue 설치 확인 vue --version - 위에 설치가 다되었으면 해당 명령어를 날려서 vue를 설치하고 확인을 합니다...

  • format_list_bulleted frontend/vue.js
  • · 2022. 12. 27.
  • textsms
A problem occurred configuring root project

A problem occurred configuring root project

A problem occurred configuring root projectCould not resolve all files for configurationCould not resolve org.springframework.boot:spring-boot-gradle-plugin:3.0.1. - spring start io에서 java 11로 선택하고 프로젝트를 받은후 intelij에서 gradle build를 했을경우 아래 에러를 마주하였습니다.  - build.gradle 파일을 열어보니 sourceCompatibility 자바 버전이 17로 되어있습니다. 저는 11버전을 선택했는데도..찾아보니 spring boot 3.0 부터는 자바가 17이 필요해서, 프로젝트 생성시 무조건 17로 된다고 합니다...

  • format_list_bulleted backend/오류모음
  • · 2022. 12. 27.
  • textsms

Spring + jquery ajax post 파일 다운로드

- 회사에서 일하던중 기존에 개발되어있던 소스가 해당코드처럼 링크를 클릭하면 get방식으로 다운로드 하는 방식이었습니다. 그런데 이게 웹 취약성에 걸려 post로 바꿔달라는 요구 사항이 있어서 그 내용에 관한것을 정리하고자 합니다. - get 방식 (이전방식) PDF다운로드 - post 방식 (변경한방식) PDF다운로드 - 더 나은 방식이 있을수 있겠지만, 저는 기존에 get방식에서 뒤에 붙는 파라미터를 attribute로 선언을하여서 넣어줬습니다. (수정하고자한 프로젝트에 개발되어있던 방식이 type 마다 해당 파일을 찾는식으로 개발이 되어있음) common.js //파일다운로드 post 방식 function fileDownload(target){ const type = $(target).attr("t..

  • format_list_bulleted backend/스프링
  • · 2022. 12. 8.
  • textsms
spring boot restart시 query 실행하기

spring boot restart시 query 실행하기

1. application.yml spring: h2: console: enabled: true datasource: url: "dburl명" username: sa password: driver-class-name: org.h2.Driver jpa: hibernate: ddl-auto: create properties: hibernate: show_sql: true format_sql: true defer-datasource-initialization: true sql: init: mode: always logging: level: org.hibernate.SQL: debug defer-datasource-initialization: true sql: init: mode: always - 해당 코드를 ..

  • format_list_bulleted backend/스프링
  • · 2022. 11. 29.
  • textsms
Cannot find method 'value'

Cannot find method 'value'

jwt TokenProvider 구현중 Cannot find method 'value' 에러를 마주쳤습니다. 이 에러를 처리하는 방법에 대해 정리하려고 합니다. 해결방법1. File-Settings에서 Annotation Processors에서 Enable annotation processing을 체크합니다. 2. 상단 import가 된 lombok 부분을 수정을 합니다. 수정전import lombok.Value; 수정후import org.springframework.beans.factory.annotation.Value; application.yml을 열어서 jwt가 spring 하단으로 갔는지 체크합니다. (하단으로 가면 안됨)spring: h2: console: enabled: tr..

  • format_list_bulleted backend/오류모음
  • · 2022. 11. 25.
  • textsms
  • navigate_before
  • 1
  • ···
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • ···
  • 44
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (263)
    • backend (140)
      • 스프링 (91)
      • 코프링 (14)
      • 자바 (33)
      • 오류모음 (2)
    • frontend (26)
      • 자바스크립트 (14)
      • JSTL (2)
      • vue.js (5)
      • 타임리프 (5)
    • 데이터베이스 (4)
      • MYSQL (4)
    • native (16)
      • 안드로이드 (16)
    • DevOps (21)
      • AWS (4)
      • 젠킨스 (2)
      • Docker (2)
      • 깃허브 (1)
    • gis (26)
      • Openlayers (4)
      • LeafletJs (19)
      • 지오서버 (3)
    • 기타 (29)
      • 소프트웨어 설치 (9)
      • 자격증 (3)
      • 개발용어 (17)
최근 글
인기 글
최근 댓글
태그
  • #charAt
  • #CentOS
  • #형변환
  • #JavaScript
  • #java
  • #AJAX
  • #Linux
  • #spring
  • #jstl
  • #useragent
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바