Spring

    [Springboot] summernote 프로젝트에 이식하기

    [Springboot] summernote 프로젝트에 이식하기

    프로젝트에 들어가는 게시판 CRUD작업 중 textarea의 아무것도없는 빈칸이 싫증이 났다.. 글작성 에디터 api를 기웃거리는데 네이버는 이미 끝났다고하고.. summernote가 제일 디자인도 깔끔하고해서 이식해보려고한다 먼저 홈페이지로 가서 https://summernote.org/ Summernote - Super Simple WYSIWYG editor Super Simple WYSIWYG Editor on Bootstrap Summernote is a JavaScript library that helps you create WYSIWYG editors online. summernote.org Getting started -> Download compiled 알집 다운로드 후 css, js, l..

    스프링부트 시작하기 in Eclipse

    스프링부트 프로젝트 생성 in Eclipse File -> New -> New Spring Starter Project -> Java Version: 11 -> Next -> Spring Boot Version: 2.6.11 Spring Web & Spring Boot DevTools 체크 후 Finish (1) 스프링부트는 기본적으로 서버가 내장되어 있다. application.properties -> Open with -> Properties File Editor server.port=8082 위 처럼 입력하면 서버포트 지정가능 (2) css, js, image ..와 같은 정적인 파일들은 src/main/resources/static 폴더에 넣어서 관리한다. (3) @SpringBootApplica..