我正在使用jTwig 模板,我有以下模板:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block title %}
<title>{{ title }}</title>
{% endblock %}
<!-- Bootstrap stylesheet-->
<link rel="stylesheet" href="{{webappRoot}}/apple-store/assets/css/bootstrap.min.css">
<!-- Custom favicon -->
<link rel="shortcut icon" href="{{webappRoot}}/apple-store/assets/img/favicon.png?v=2" />
</head>
<body>
<div class="container">
{% block content %}{% endblock %}
</div>
<script src="{{webappRoot}}/apple-store/assets/js/jquery-1.11.1.min.js"></script>
<script src="{{webappRoot}}/apple-store/assets/js/bootstrap.min.js"></script>
</body>
</html>
apple-store
我的项目的名称在哪里,webappRoot
我认为是 spring 的一个变量,所以这里的完整路径将是http://localhost:8080/apple-store/assets/<some asset>
- 因为webapp = http://localhost:8080
.
有更好的方法来做到这一点吗?也许像这样的一种“变量”webappRoot
会显示我的项目名称或路径http://localhost:8080/apple-store
?