Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HttpServletRequest.getPathInfo(); に似たものを使用したい リクエストのパス全体を返します。これはJavaで使用されています.Grailsで同様のものを見つけようとしています.
ありがとう。
requestオブジェクトは、サーブレット API の HttpServletRequest インターフェイスのインスタンスです。
request
コントローラーでそれを試す必要があります:(Webページにリクエストのパス全体を表示するため)
def index = { render request.forwardURI }