本文主要給大家介紹CAS4.0連接MySQL數(shù)據(jù)庫的詳細步驟,文章內(nèi)容都是筆者用心摘選和編輯的,具有一定的針對性,對大家的參考意義還是比較大的,下面跟筆者一起了解下CAS4.0連接mysql數(shù)據(jù)庫的詳細步驟吧。
創(chuàng)新互聯(lián)公司專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、白朗網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站、商城開發(fā)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為白朗等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
步驟如下
一:
在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
Xml代碼
二:
本地創(chuàng)建數(shù)據(jù)庫,并新建表 cas_user,創(chuàng)建語句如下載
Sql代碼
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;
三:
配置數(shù)據(jù)庫相關(guān)文件,在tomcat-for-cas\webapps\cas\WEB-INF\deployerConfigContext.xml中配置對應(yīng)的datasource,數(shù)據(jù)庫地址,用戶名,密碼,以及查詢用戶的sql。需要注意的是,如果是自己建的表,要把相應(yīng)的字段名,數(shù)據(jù)庫名替換掉,以及,不要忘記注釋掉默認用戶名密碼的配置(casuser/Mellon)。下載以下配置可以全拷貝
Xml代碼
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">
下載
class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
p:httpClient-ref="httpClient" p:requireSecure="true" />
class="org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler">
class="org.jasig.cas.authentication.principal.BasicPrincipalResolver" />
class="org.jasig.cas.authentication.principal.PersonDirectoryPrincipalResolver" >
p:backingMap-ref="attrRepoBackingMap" />
p:registeredServices-ref="registeredServicesList" />
p:id="0" p:name="HTTP and IMAP" p:description="Allows HTTP(S) and IMAP(S) protocols"
p:serviceId="^(https?|imaps?)://.*" p:evaluationOrder="10000001" />
下載
p:ticketRegistry-ref="ticketRegistry"
p:serviceTicketCountWarnThreshold="5000"
p:sessionCountWarnThreshold="100000" />
class="org.jasig.services.persondir.support.jdbc.SingleRowJdbcPersonAttributeDao">
value="select username,password from cas_user where {0}" />
看完以上關(guān)于CAS4.0連接mysql數(shù)據(jù)庫的詳細步驟,很多讀者朋友肯定多少有一定的了解,如需獲取更多的行業(yè)知識信息 ,可以持續(xù)關(guān)注我們的行業(yè)資訊欄目的。