`
equalxx
  • 浏览: 65202 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

CAS4.0关联mysql数据库

阅读更多

首先要把参照的网址贴出来,尤其是别人的劳动成果:)

参照文章:

http://blog.163.com/zhao_jinggui/blog/static/169620429201411245344180/

https://wiki.jasig.org/display/CASUM/Using+JDBC+for+Authentication

https://my.oschina.net/xiaokaceng/blog/181946

 

本地环境windows 10 64bit

 

步骤如下(亲测可用)

一:

在cas-4.0.0\cas-server-webapp\pom.xml中添加依赖后(如下方所示),打开cmd在cas-4.0.0\cas-server-webapp文件夹下运行mvn clean package,然后将cas-4.0.0\cas-server-webapp\target下的cas.war包部署至tomcat

<dependency>
    <groupId>org.jasig.cas</groupId>
    <artifactId>cas-server-support-jdbc</artifactId>
    <version>${project.version}</version>
    <type>jar</type>
</dependency>

<!-- https://mvnrepository.com/artifact/commons-dbcp/commons-dbcp -->
<dependency>
    <groupId>commons-dbcp</groupId>
    <artifactId>commons-dbcp</artifactId>
    <version>1.4</version>
</dependency>

<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.6</version>
</dependency>

 

二:

本地创建数据库,并新建表 cas_user,创建语句如下

create table cas_user (
    id bigint not null auto_increment,
    email varchar(255),
    username varchar(255) not null unique,
    name varchar(255),
    password varchar(255),
    primary key (id)
) ENGINE=InnoDB;

 

三:

配置数据库相关文件,在tomcat-for-cas\webapps\cas\WEB-INF\deployerConfigContext.xml中配置对应的datasource,数据库地址,用户名,密码,以及查询用户的sql。需要注意的是,如果是自己建的表,要把相应的字段名,数据库名替换掉,以及,不要忘记注释掉默认用户名密码的配置(casuser/Mellon)。以下配置可以全拷贝

<?xml version="1.0" encoding="UTF-8"?>
<!--
    Licensed to Jasig under one or more contributor license
    agreements. See the NOTICE file distributed with this work
    for additional information regarding copyright ownership.
    Jasig licenses this file to you under the Apache License,
    Version 2.0 (the "License"); you may not use this file
    except in compliance with the License.  You may obtain a
    copy of the License at the following location:
      http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
-->
<!--
| deployerConfigContext.xml centralizes into one file some of the declarative configuration that
| all CAS deployers will need to modify.
|
| This file declares some of the Spring-managed JavaBeans that make up a CAS deployment.  
| The beans declared in this file are instantiated at context initialization time by the Spring 
| ContextLoaderListener declared in web.xml.  It finds this file because this
| file is among those declared in the context parameter "contextConfigLocation".
|
| By far the most common change you will need to make in this file is to change the last bean
| declaration to replace the default authentication handler with
| one implementing your approach for authenticating usernames and passwords.
+-->
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:c="http://www.springframework.org/schema/c"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:sec="http://www.springframework.org/schema/security"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
       http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
    <!--
       | The authentication manager defines security policy for authentication by specifying at a minimum
       | the authentication handlers that will be used to authenticate credential. While the AuthenticationManager
       | interface supports plugging in another implementation, the default PolicyBasedAuthenticationManager should
       | be sufficient in most cases.
       +-->
    <bean id="authenticationManager" class="org.jasig.cas.authentication.PolicyBasedAuthenticationManager">
        <constructor-arg>
            <map>
                <!--
                   | IMPORTANT
                   | Every handler requires a unique name.
                   | If more than one instance of the same handler class is configured, you must explicitly
                   | set its name to something other than its default name (typically the simple class name).
                   
                   -->
                    <entry key-ref="proxyAuthenticationHandler" value-ref="proxyPrincipalResolver" />
                 <entry key-ref="primaryAuthenticationHandler" value-ref="primaryPrincipalResolver" />
            </map>
        </constructor-arg>
        <!-- Uncomment the metadata populator to allow clearpass to capture and cache the password
             This switch effectively will turn on clearpass.
        <property name="authenticationMetaDataPopulators">
           <util:list>
              <bean class="org.jasig.cas.extension.clearpass.CacheCredentialsMetaDataPopulator"
                    c:credentialCache-ref="encryptedMap" />
           </util:list>
        </property>
        -->
        <!--
           | Defines the security policy around authentication. Some alternative policies that ship with CAS:
           |
           | * NotPreventedAuthenticationPolicy - all credential must either pass or fail authentication
           | * AllAuthenticationPolicy - all presented credential must be authenticated successfully
           | * RequiredHandlerAuthenticationPolicy - specifies a handler that must authenticate its credential to pass
           -->
        <property name="authenticationPolicy">
            <bean class="org.jasig.cas.authentication.AnyAuthenticationPolicy" />
        </property>
    </bean>
    <!-- Required for proxy ticket mechanism. -->
    <bean id="proxyAuthenticationHandler"
          class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
          p:httpClient-ref="httpClient" p:requireSecure="true" />
    <!--
       | TODO: Replace this component with one suitable for your enviroment.
       |
       | This component provides authentication for the kind of credential used in your environment. In most cases
       | credential is a username/password pair that lives in a system of record like an LDAP directory.
       | The most common authentication handler beans:
       |
       | * org.jasig.cas.authentication.LdapAuthenticationHandler
       | * org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler
       | * org.jasig.cas.adaptors.x509.authentication.handler.support.X509CredentialsAuthenticationHandler
       | * org.jasig.cas.support.spnego.authentication.handler.support.JCIFSSpnegoAuthenticationHandler
       -->
    <bean id="primaryAuthenticationHandler"
          class="org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler">
          <property name="dataSource" ref="dataSource"/>
          <property name="sql" value="select password from cas_user where username = ?"/>
    </bean>

    <!-- Required for proxy ticket mechanism -->
    <bean id="proxyPrincipalResolver"
          class="org.jasig.cas.authentication.principal.BasicPrincipalResolver" />
    <!--
       | Resolves a principal from a credential using an attribute repository that is configured to resolve
       | against a deployer-specific store (e.g. LDAP).
       -->
    <bean id="primaryPrincipalResolver"
          class="org.jasig.cas.authentication.principal.PersonDirectoryPrincipalResolver" >
        <property name="attributeRepository" ref="selfAttributeRepository" />
    </bean>

    <!--
    Bean that defines the attributes that a service may return.  This example uses the Stub/Mock version.  A real implementation
    may go against a database or LDAP server.  The id should remain "attributeRepository" though.
    +-->
    <bean id="attributeRepository" class="org.jasig.services.persondir.support.StubPersonAttributeDao"
            p:backingMap-ref="attrRepoBackingMap" />
    
    <util:map id="attrRepoBackingMap">
        <entry key="uid" value="uid" />
        <entry key="eduPersonAffiliation" value="eduPersonAffiliation" /> 
        <entry key="groupMembership" value="groupMembership" />
    </util:map>
    <!-- 
    Sample, in-memory data store for the ServiceRegistry. A real implementation
    would probably want to replace this with the JPA-backed ServiceRegistry DAO
    The name of this bean should remain "serviceRegistryDao".
    +-->
    <bean id="serviceRegistryDao" class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl"
            p:registeredServices-ref="registeredServicesList" />
    <util:list id="registeredServicesList">
        <bean class="org.jasig.cas.services.RegexRegisteredService"
              p:id="0" p:name="HTTP and IMAP" p:description="Allows HTTP(S) and IMAP(S) protocols"
              p:serviceId="^(https?|imaps?)://.*" p:evaluationOrder="10000001" />
        <!--
        Use the following definition instead of the above to further restrict access
        to services within your domain (including sub domains).
        Note that example.com must be replaced with the domain you wish to permit.
        This example also demonstrates the configuration of an attribute filter
        that only allows for attributes whose length is 3.
        -->
        <!--
        <bean class="org.jasig.cas.services.RegexRegisteredService">
            <property name="id" value="1" />
            <property name="name" value="HTTP and IMAP on example.com" />
            <property name="description" value="Allows HTTP(S) and IMAP(S) protocols on example.com" />
            <property name="serviceId" value="^(https?|imaps?)://([A-Za-z0-9_-]+\.)*example\.com/.*" />
            <property name="evaluationOrder" value="0" />
            <property name="attributeFilter">
              <bean class="org.jasig.cas.services.support.RegisteredServiceRegexAttributeFilter" c:regex="^\w{3}$" /> 
            </property>
        </bean>
        -->
    </util:list>
    
    <bean id="auditTrailManager" class="com.github.inspektr.audit.support.Slf4jLoggingAuditTrailManager" />
    
    <bean id="healthCheckMonitor" class="org.jasig.cas.monitor.HealthCheckMonitor" p:monitors-ref="monitorsList" />
  
    <util:list id="monitorsList">
      <bean class="org.jasig.cas.monitor.MemoryMonitor" p:freeMemoryWarnThreshold="10" />
      <!--
        NOTE
        The following ticket registries support SessionMonitor:
          * DefaultTicketRegistry
          * JpaTicketRegistry
        Remove this monitor if you use an unsupported registry.
      -->
      <bean class="org.jasig.cas.monitor.SessionMonitor"
          p:ticketRegistry-ref="ticketRegistry"
          p:serviceTicketCountWarnThreshold="5000"
          p:sessionCountWarnThreshold="100000" />
    </util:list>
    
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
                   <property name="driverClassName">
                           <value>com.mysql.jdbc.Driver</value>
                   </property>
                   <property name="url">
                            <value>jdbc:mysql://localhost:3306/test</value>
                   </property>
                   <property name="username">
                            <value>root</value>
                   </property>
                   <property name="password">
                            <value>123456</value>
                   </property>
    </bean>
    
    <bean id="selfAttributeRepository"
  class="org.jasig.services.persondir.support.jdbc.SingleRowJdbcPersonAttributeDao">
  <constructor-arg index="0" ref="dataSource" />
  <constructor-arg index="1"
   value="select username,password from cas_user where {0}" />
  
  <!-- 组装sql用的查询条件属性 --> 
  <property name="queryAttributeMapping">
   <map>
       <!-- key必须是uername而且是小写否则会导致取不到用户的其它信息,value对应数据库用户名字段,系统会自己匹配 -->
    <entry key="username" value="username" />
    <entry key="password" value="password" />
   </map>
  </property>
  <property name="resultAttributeMapping">
   <map>
       <!-- key为对应的数据库字段名称,value为提供给客户端获取的属性名字,系统会自动填充值 -->
    <entry key="username" value="username"></entry>
    <entry key="password" value="password"></entry>
   </map>
  </property>
 </bean> 
</beans>

 如果觉得文章好的话,鼓励一下吧:D爱的么么哒~!!



 

  • 大小: 144.5 KB
0
3
分享到:
评论

相关推荐

    CAS4.0单点登录

    1. 安装CAS服务器:下载CAS4.0的源码或二进制包,按照官方文档配置服务器环境,包括数据库连接、认证策略等。 2. 集成应用:在你的Web应用中配置CAS客户端库,如Java CAS Client,设置服务URL和CAS服务器地址。 3....

    cas4.0 mysql c3p0 jar包

    在CAS 4.0 版本中,它提供了对多种数据库的支持,包括MySQL,以便用户可以存储和管理认证信息。在这个特定的场景中,我们关注的是如何配置CAS与MySQL数据库的连接,以及使用c3p0和Druid作为连接池的选项。 首先,`...

    CAS4.0 自定义客服端登陆界面,客服端与服务端

    cas4.0版本的 单点登录 自定义页面。希望对你有用,最低资源分,辛苦分。有问题可以交流学习。谢谢

    cas4.0 server的eclipse项目

    【标题】"CAS4.0 Server的Eclipse项目"是一个基于Java开发的身份验证服务系统,专为Web应用程序提供单点登录(Single Sign-On, SSO)解决方案。CAS,即Central Authentication Service,是一个开源项目,旨在简化...

    cas4.0源码包

    Cas4.0源码包是CAS系统的一个重要版本,它在功能和性能上都做了很多改进和优化。 CAS的核心功能是实现用户在一个应用系统中登录后,无需再次认证即可访问其他已集成的系统。这种功能极大地提升了用户体验,同时也...

    CAS连接mysql数据库使用的jar

    标题中的“CAS连接mysql数据库使用的jar”指的是在CAS服务器中添加特定的Java库(jar文件),以支持与MySQL数据库的交互。以下是这些jar文件的作用: 1. **cas-server-support-jdbc-4.2.7.jar**:这是CAS服务器的一...

    cas4.0集成restle所需jar文件

    4. **添加依赖**:压缩包中的"cas4.0整合restle所需jar文件"包含了集成RESTle所需的库。这些JAR文件需要添加到CAS服务器的类路径中,以便运行时能够加载RESTle的相关类。通常,这可以通过修改`WEB-INF/lib`目录下的...

    可直接导入eclipse运行的CAS4.0

    直接将压缩包解压,导入eclipse中,替换deployerConfigContext.xml、cas-servlet.xml spring-configuration中的配置文件(将官网原来的配置文件复制过来替换即可。这些XML是根据自己的业务需求已经修改过的)。

    cas4.0单点登录系统的war

    CAS4.0是CAS的一个版本,它提供了一种集中式的用户认证服务,使得用户在访问多个应用系统时只需要登录一次,提高了用户体验并加强了安全性。这个war文件是CAS服务器的可部署文件,通常用于Tomcat或其他Java应用...

    cas4.2.4、cas4.0war包

    此外,根据您的组织需求,可能还需要配置CAS与您的特定身份源(如LDAP、数据库)进行集成,以便验证用户的凭证。 总之,CAS 4.2.4和CAS 4.0.0是强大的身份验证解决方案,它们为开发者和管理员提供了丰富的功能来...

    cas单点登录4.0

    除了基本的HTTP/HTTPS协议支持,CAS 4.0还支持多种协议的扩展,如PAM(Pluggable Authentication Modules)、LDAP、数据库等。这使得CAS能适应各种认证环境,与现有系统无缝集成。 7. **安全性和隐私保护** CAS ...

    cas服务端-连接数据库版

    在这个版本中,CAS服务器与MySQL数据库相结合,用于存储和验证用户凭证,提供安全的身份验证服务。以下是关于这个主题的详细知识点: 1. **CAS服务端**:CAS 是一个开源项目,由耶鲁大学发起,旨在解决多应用系统的...

    jasig cas4.1.4+oracle数据库认证

    2. **认证处理器配置**:配置 CAS 使用 Oracle 数据库进行认证,需要定义一个支持 Oracle 的认证处理器,例如 `JdbcAuthenticationHandler`,并配置相应的 SQL 查询语句用于查找用户信息。 3. **Ticket Registry**...

    CAS-4.0.3服务端通过数据库认证用户Demo

    这是我的博文http://blog.csdn.net/jadyer/article/details/46939943用到的代码

    cas-server4.0

    【CAS服务器4.0:构建安全的Web身份验证框架】 CAS(Central Authentication Service)是一种开源的身份验证协议,常用于构建单点登录(Single Sign-On,SSO)系统。CAS服务器4.0是该协议的一个重要版本,提供了...

    cas server 5.3.9 整合数据库验证用户信息,使用security密码验证方式

    5. **配置CAS Server**:在CAS的Spring配置中,注册你创建的`UserDetailsService`,并将它与认证处理器关联。这样,当CAS收到登录请求时,会调用这个处理器来验证用户。 6. **测试与调试**:完成配置后,通过登录...

    cas-server4.2.7数据库配置相关文件以及说明

    这通常涉及到配置文件(如`cas.properties`或`application.yml`)中的数据库连接参数,包括数据库类型(如MySQL、Oracle、PostgreSQL等)、URL、用户名、密码、驱动类名以及连接池配置等。 3. **读取用户数据**: ...

    Cas-mysql连接相关jar

    在本例中,我们关注的是"Cas-mysql连接相关jar",这涉及到Java CAS(Central Authentication Service)框架与MySQL数据库之间的连接。 首先,让我们了解一下Java CAS。CAS是一个开源的身份验证协议,它提供了一种...

    cas-server 配置mysql数据源

    本文将深入探讨如何在CAS Server 4.0.0版本中配置MySQL数据库作为其数据源。 首先,我们需要理解数据源在CAS中的作用。数据源是存储和管理应用程序所需数据的连接池,这里是指用于存储CAS服务器元数据和认证信息的...

Global site tag (gtag.js) - Google Analytics