如何在web.xml文件中将上下文根路径从http://host:port/app_name更改为仅 app_name ,或在Dynamic Web Project中将其他方式更改。
实际上,我面临一个问题,即将本地javascript,css和其他资源导入我的视图中说html / jsp。
例如,我在web-content的资源文件夹中有一些js和css文件。 现在要导入这些我正在使用下面的代码。
<link rel="stylesheet" href="http://localhost:8080/appname/resources/css/bootstrap.min.css">
<script type="text/javascript" src="http://localhost:8080/appname/resources/js/angular.min.js"></script>
<script type="text/javascript" src="http://localhost:8080/appname/resources/js/jquery.min.js"></script>
<script type="text/javascript" src="http://localhost:8080/appname/resources/js/bootstrap.min.js"></script>
所以现在我想将 http://localhost:8080/appname/ 更改为唯一 appname / 表示<script type="text/javascript" src="appname/resources/js/angular.min.js"></script>
作为主机和端口动态,并且可以更改随时。那我怎么能实现呢。