摘要: mysql table CREATE TABLE `oauth_access_token` (`token_id` varchar(256) DEFAULT NULL,`token` blob,`authentication_id` varchar(250) NOT NULL,`user_name` 阅读全文
posted @ 2020-06-11 15:17 tangfeifei2020 阅读(635) 评论(0) 推荐(0)
摘要: table mysql CREATE TABLE `oauth_access_token` ( `token_id` varchar(256) DEFAULT NULL, `token` blob, `authentication_id` varchar(250) NOT NULL, `user_n 阅读全文
posted @ 2020-06-11 15:03 tangfeifei2020 阅读(1449) 评论(0) 推荐(0)
摘要: pom.xml <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 阅读全文
posted @ 2020-06-11 14:23 tangfeifei2020 阅读(1615) 评论(0) 推荐(0)
摘要: 数据库 pom.xml <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency 阅读全文
posted @ 2020-05-24 16:14 tangfeifei2020 阅读(569) 评论(0) 推荐(0)
摘要: 数据库表 数据查询基于JPApom.xml<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </depend 阅读全文
posted @ 2020-05-24 15:49 tangfeifei2020 阅读(487) 评论(0) 推荐(0)
摘要: springboot2.X jasypt-spring-boot-starter version2.1.1 1.首先得到加密后的内容 加密过程 EnvironmentStringPBEConfig config = new EnvironmentStringPBEConfig(); config.s 阅读全文
posted @ 2020-05-24 15:30 tangfeifei2020 阅读(2495) 评论(0) 推荐(0)