我刚刚将我的应用程序升级为grails 2.3.4,并且我正在实施Cucumber和Geb测试,以便全面覆盖。
问题是应该只应该监听安全连接(https)的应用程序的一个要求,所以我在config groovy中添加了
grails.plugin.springsecurity.auth.forceHttps = "true"
grails.plugin.springsecurity.secureChannel.definition = [
'/**':'REQUIRES_SECURE_CHANNEL'
]
现在,问题是当我运行grails test-app -https时,没有使用param -https并且只在非安全通道中启动应用程序。
在https中运行test-app的任何想法?
提前致谢