일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 적용우선순위
- querydsl
- 메소드명
- 메세지수정
- 테스트메소드
- EC2
- 예약
- 포트
- docker명령어
- foreignkey
- 참조키
- 2 > /dev/null
- appspec.yml
- application.yml
- 추후정리
- subquery
- MySQL
- 네이티브쿼리
- Query
- ubuntu
- 검색
- 서브쿼리
- ㅔㄴ션
- AuthenticationEntryPoint
- 커밋메세지수정
- 외부키
- 컨테이너실행
- WeNews
- 테스트
- appspec
Archives
- Today
- Total
제뉴어리의 모든것
webjars 추가할때 주의사항 본문
dependencies {
implementation 'org.webjars:webjars-locator-core'
implementation 'org.webjars:sockjs-client:1.0.2'
implementation 'org.webjars:stomp-websocket:2.3.3'
implementation 'org.webjars:bootstrap:3.3.7'
implementation 'org.webjars:jquery:3.1.1-1'
}
이렇게 webjar를 build.gradle에 추가해서 사용할때
static 폴더에 정적자원으로 생성되지 않아서 html문서에서 추가를 안해도 되는것 처럼 보이지만,
추가해주지 않으면 라이브러리를 사용할 수 없다..
아래처럼 html 파일에 추가해주자..
<link href="/webjars/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src="/webjars/jquery/jquery.min.js"></script>
<script src="/webjars/sockjs-client/sockjs.min.js"></script>
<script src="/webjars/stomp-websocket/stomp.min.js"></script>
'Spring Boot' 카테고리의 다른 글
[Spring] 스프링 빈(Bean)의 개념과 생성 원리 (0) | 2021.04.01 |
---|---|
@ModelAttribute 란 (0) | 2021.04.01 |
Spring Boot에서 이벤트 사용하기 (0) | 2021.03.23 |
controller와 dto, html 에서 배열을 주고 받을때 성공 실패 (0) | 2021.03.18 |
Spring Boot 현재 세션 가져오기 (0) | 2021.03.10 |