Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Service Management Application Url

httpExample url: https://localhost:8080cas.server.edu/cas/services/manage.html

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.DRAFT

No Format
 	<!-- 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" />