Service Management Application Url
Example url: https://cas.server.edu/cas/services/
Configuring the Security Options
Using the Services Management Tool
Database Schema
NOTE: This application currently uses an in-memory dao. For production deployments it should be replaced with the JPA-provided one.
<!-- This is the EntityManagerFactory configuration for Hibernate --> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="jpaVendorAdapter"> <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> <property name="generateDdl" value="true"/> <property name="showSql" value="true" /> </bean> </property> </bean> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <property name="entityManagerFactory" ref="entityManagerFactory"/> </bean> <tx:annotation-driven transaction-manager="transactionManager"/> <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" p:driverClass="org.hsqldb.jdbcDriver" p:jdbcUrl-ref="database" p:password="" p:user="sa" />