下载 jetty 的 CAS 服务器
download CAS server for jetty
我在哪里可以下载 war 文件以在码头实例中安装 CAS server?
官方上downloads page我只找源
在very same link that you referenced, there is a "Getting Started" section under which there is "Installation". That page describes the installation process and how that works in general and points you to the installation script/project that is here。下载该项目并按照自述文件中的说明进行操作。特别是,您会在该项目的 gradle.properties 文件中找到
# Use -jetty, -undertow to other containers
# Or blank if you want to deploy to an external container
appServer=-tomcat
所以你会设置:
appServer=
为您选择的外部容器,例如码头。
或者您设置:
appServer=-jetty
对于嵌入式 Jetty 容器。
我在哪里可以下载 war 文件以在码头实例中安装 CAS server?
官方上downloads page我只找源
在very same link that you referenced, there is a "Getting Started" section under which there is "Installation". That page describes the installation process and how that works in general and points you to the installation script/project that is here。下载该项目并按照自述文件中的说明进行操作。特别是,您会在该项目的 gradle.properties 文件中找到
# Use -jetty, -undertow to other containers
# Or blank if you want to deploy to an external container
appServer=-tomcat
所以你会设置:
appServer=
为您选择的外部容器,例如码头。
或者您设置:
appServer=-jetty
对于嵌入式 Jetty 容器。