私はこれに数日間苦労しており、プレーンな Grails 2.4.4 プロジェクトで次のことを行うことになりました。
grails create-app
grails install-templates
次にBuildConfig.groovyの修正
dependencies {
...
compile "com.google.guava:guava:18.0"
compile "com.github.dblock.waffle:waffle-jna:1.7.3"
compile "net.java.dev.jna:jna:4.1.0"
compile "net.java.dev.jna:jna-platform:4.1.0"
compile "org.slf4j:slf4j-api:1.7.9"
....
}
次に、次の内容で ..\META-INF の下にcontext.xmlを作成しました。
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE Context>
<Context>
<Valve className="waffle.apache.NegotiateAuthenticator" principalFormat="fqn" roleFormat="both" protocols="Negotiate,NTLM" />
<Realm className="waffle.apache.WindowsRealm" />
</Context>
そして、以下を..\templates\web.xmlファイルに追加しました。
<display-name>/@grails.project.key@</display-name>
<security-constraint>
<display-name>Waffle Security Constraint</display-name>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>/</url-pattern>
<http-method>DELETE</http-method>
<http-method>GET</http-method>
<http-method>POST</http-method>
<http-method>PUT</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>Everyone</role-name>
</auth-constraint>
</security-constraint>
<security-role>
<role-name>Everyone</role-name>
</security-role>
....
....
実際に機能することを確認するために、index.gspに行を追加しました。
<p>You are logged in as remote user <b>${request.getRemoteUser()}</b> in session <b>${session.getId()}</b>.</p>
これを Tomcat 7.0.57 でテストしたところ、Tomcat lib にいくつかの jar を追加して動作させる必要がありました。slf4j -api-1.7.9.jar、guava-18.0.jar、jna-platform-4.1.0.jar、jna-4.1.0.jar、waffle-tomcat7-1.7.3.jar、waffle-jna-を追加しました1.7.3.jar。同じ jar が BuildConfig.groovy にも追加されているのに、なぜこれが実際に必要なのか、まだ疑問に思っています。