본문 바로가기
반응형

전체 글289

[SpringBoot] DataTable 이용하여 추가,수정,삭제 구현하기 https://greed-yb.tistory.com/252 [SpringBoot] DataTable(JavaScript) - 적용하기이전글 이어서https://greed-yb.tistory.com/251 [SpringBoot] Thymeleaf - layout 적용하기https://greed-yb.tistory.com/218#google_vignette [Spring] Bootstrap SB Admin 2 설치하기 https://greed-yb.tistory.com/209 [SpringBoot+IntelliJ+Oracle+Thymelgreed-yb.tistory.comDataTable 적용은 이전글을 참고하길 바란다   html 권한 .. 2024. 7. 26.
[SpringBoot] FullCalendar을 이용한 캘린더 구현하기 cdn   voimport lombok.Getter;import lombok.Setter;@Getter@Setterpublic class CalendarVo { private Long calendarNo; private String title; private String start1; private String end; private boolean allDay;}  controllerimport com.example.practice.service.calendar.CalendarService;import com.example.practice.vo.calendar.CalendarVo;import org.springframework.beans.fa.. 2024. 7. 23.
[SpringBoot] Autocomplete을 이용한 자동완성기능 구현하기 Autocomplete 는 jQuery 의 함수 중 하나로사용자가 입력한 데이터를 실시간 감지하여 연관되는 데이터를 자동완성시켜 주는 기능을 한다  jQuery   html 전체 경영 영업 개발   js// 결재자 변수let tData;// 결재자 부서 선택 변수let selectDepartValue = "";// label 과 value로 설정할때 사용const tData2 = [{label : "대표", value : "1"},{label : "부장", value : "2"},{label : "과장", value : "3"},{label : "대.. 2024. 7. 22.
[SpringBoot] Chart.js 를 이용하여 실시간 바 차트 구현하기 이전글https://greed-yb.tistory.com/270 [SpringBoot] Chart.js 를 이용하여 실시간 (반도넛)차트 구현하기Chart.js https://www.chartjs.org/ Chart.jsSimple yet flexible JavaScript charting library for the modern webwww.chartjs.org        나는 npm, CDN 방식이 무슨 이유인지 계속 오류가 나서 직접 다운로드를 하였다      greed-yb.tistory.com다운로드 및 적용방법은 이전글을 참고하길 바란다   controllerimport org.springframework.web.bind.annotation.GetMapping;import org.spring.. 2024. 7. 17.
[SpringBoot] Chart.js 를 이용하여 실시간 라인 차트 구현하기 이전글https://greed-yb.tistory.com/270 [SpringBoot] Chart.js 를 이용하여 실시간 (반도넛)차트 구현하기Chart.js https://www.chartjs.org/ Chart.jsSimple yet flexible JavaScript charting library for the modern webwww.chartjs.org        나는 npm, CDN 방식이 무슨 이유인지 계속 오류가 나서 직접 다운로드를 하였다      greed-yb.tistory.com다운로드 및 적용방법은 이전글을 참고하길 바란다   controllerimport com.sun.management.OperatingSystemMXBean;import org.springframework... 2024. 7. 17.
[SpringBoot] Chart.js 를 이용하여 실시간 (반도넛)차트 구현하기 Chart.js https://www.chartjs.org/ Chart.jsSimple yet flexible JavaScript charting library for the modern webwww.chartjs.org        나는 npm, CDN 방식이 무슨 이유인지 계속 오류가 나서 직접 다운로드를 하였다        폴더의 다른 파일들은 필요 없고 chart.js 파일들만resources/static 경로로 넣어준다 연결해서 사용할 파일은chart.umd.js 다 처음 압축 파일을 다운로드 했을때 chart.js 를 사용해 보았는데 함수가 제대로 사용되지 않았고 chart.umd.js 을 사용하니 정상 동작하였다chart.min.js 가 없어서도 당황했는데 chart.js 마저 동작하지 않아.. 2024. 7. 16.
반응형