Files
hbyl/WEB-INF/src_meetingroom/spring/spring-neusoft-sso.xml

18 lines
787 B
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans default-autowire="byName">
<bean id="ssodemo" class="com.seeyon.ctp.portal.sso.SSOLoginContext">
<property name="name" value="meetingroomlogin"/>
<property name="ticketName" value="loginName"/>
<!-- 单点登录成功是否跳转到首页true-首页false ssook -->
<property name="forward" value="true"/>
<property name="handshake">
<!-- 使用自己的握手实现 -->
<bean class="com.seeyon.apps.src_meetingroom.sso.MeetingRoomLoginSSO" />
</property>
</bean>
<bean name="/meetingRoomInterfacesso.do" class="com.seeyon.apps.src_meetingroom.sso.MeetingRoomInterfaceSSO"></bean>
</beans>