CAS配置数据源,数据库用户认证
第一步:新建数据和表:
CREATE DATABASE /*!32312 IF NOT EXISTS*/`db_sso` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `db_sso`; /*Table structure for table `t_cas` */ DROP TABLE IF EXISTS `t_cas`; CREATE TABLE `t_cas` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(30) DEFAULT NULL, `password` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*Data for the table `t_cas` */ insert into `t_cas`(`id`,`username`,`password`) values (1,'java1234','123456');
第二步:修改application.properties配置文件
注释掉写死的认证用户
加上jdbc数据源配置
# cas.authn.accept.users=casuser::Mellon # cas.authn.jdbc.query[0].dialect=org.hibernate.dialect.MySQL5Dialect cas.authn.jdbc.query[0].url=jdbc:mysql://localhost:3306/db_sso?serverTimezone=GMT cas.authn.jdbc.query[0].user=root cas.authn.jdbc.query[0].password=123456 cas.authn.jdbc.query[0].sql=select * from t_cas where username=? cas.authn.jdbc.query[0].fieldPassword=password cas.authn.jdbc.query[0].driverClass=com.mysql.jdbc.Driver
第三步:加上jdbc驱动包以及支持jar
第四步:测试OK