現在のページのURLはhttp://localhost:8080/operator/list.html
です。このページのAjaxはhttp://localhost:8080/operator/somerequest.html
である必要があります。ctx = "http://localhost:8080/operator/"
ならajaxはうまくいくはずですが、これをthymeleaf組み込みの表記法と置き換えたいのですが、どうすればいいですか?私はthisを読んだことがありません...thymeleafでURLパスを取得する方法
<script th:inline="javascript">
/*<![CDATA[*/
var ctx = ?; // what thymeleaf annotation
/*]]>*/
</script>
var ctx = [[${#httpServletRequest.getContextPath()}]]
とvar ctx = [[@{/}]]
を試み、この2の偶数の和が、しています。