├── .gitignore ├── README.md ├── pom.xml └── src └── main ├── resources ├── logback.xml └── shiro.ini └── webapp ├── WEB-INF └── web.xml ├── error.jsp ├── favicon.ico ├── index.jsp └── protected └── index.jsp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/webapp/error.jsp -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/protected/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/casinthecloud/java-shiro-cas-client-demo/HEAD/src/main/webapp/protected/index.jsp --------------------------------------------------------------------------------