注意JQuery的引用的src,这里我采用绝对路径,css文件夹在WebContext下
<script type="text/javascript" src="<%=request.getContextPath() %>/css/jquery-2.1.4.js" charset="utf-8"></script>
<script type="text/javascript" src="<%=request.getContextPath() %>/css/jquery-2.1.4.js" charset="utf-8"></script>
2016-11-28
出错 strust Can not find a java.io.InputStream with the name [InputStream] in the invocation stack. Check the <param name="inputName"> tag specified for this action.
2016-11-11
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<base href="<%=basePath%>">
老师的源码中有这样的几句话,大家看一下,对应位置加进去就可以使用像老师使用那样的图片路径了。
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<base href="<%=basePath%>">
老师的源码中有这样的几句话,大家看一下,对应位置加进去就可以使用像老师使用那样的图片路径了。
2016-11-06
ServletActionContext.getServletContext().getResourceAsStream("..")
2016-11-05