JSP 에서 JS 파일 을 불 러 오 는 효과 적 인 해결 방법

디 렉 터 리 구조:jsp 가 jquery 파일 을 가 져 옵 니 다.항상 역할 을 하지 않 습 니 다.이 유 는
 
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
/WEB-INF/디 렉 터 리 에 있 는 파일 에 접근 할 수 없 기 때문에 불 러 온 js 파일 을 webapp 디 렉 터 리 에 거꾸로 놓 아야 합 니 다  test.html:
 
<%@ page language="java" %>
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="java.util.*" %>
<%@ page isELIgnored="false" %>

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<html>
<head>
<base href="<%=basePath%>" />
<link rel=stylesheet type="text/css" href="css/style.css"/>
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>

<script type="text/javascript">
$(document).ready(function() {
alert("hello, jquery");
});
</script>

<title> </title>
</head>

<body>
<p class="error"><%=basePath%></p>
</body>
</html>

좋은 웹페이지 즐겨찾기