카테고리 없음
WebJar
상국이
2022. 2. 27. 15:10
728x90
WebJar
> 클라이언트에서 사용하는 javascript library react.js, vue.js 등을 jar파일로 다룰 수 있음
> jar파일을 dependency로 추가하여 해당 jar의 css, javascript를 참조할 수 있음
ex)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
Hello, SangGuk
<script src="/webjars/jquery/3.3.1/dist/jquery.min.js"></script>
<script>
$(function () {
alert("hi hi!");
});
</script>
</body>
</html>
>webjar-locator-core dependency를 추가해주는 경우 버전을 생략할 수 있다.
* 결과
728x90