路在脚下,心向远方

pdman数据库建模

[TOC] 官网地址:https://my.oschina.net/skymozn/blog/1821184 常用步骤 连接数据源 新增模块,在这里创建表,

maven多项目依赖

[TOC] 简述 简单查看项目和项目依赖处理, 业务模块进行modules的分开。抽离公用模块代码。 jsite-root <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>cn.org.jsite</groupId> <artifactId>jsite-root</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>pom</packaging> <modules> <module>jsite-common</module> <module>jsite-framework</module> <module>jsite-flowable</module> <module>jsite-web</module> </modules> <name>JSite</name> <description>JSite for Spring Boot</description> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.4.RELEASE</version> <relativePath/>

shiro-springboot,shiro简单应用

[TOC] 简述 实现SpringBoot和shiro的整合,不同的权限出现不同的页面的效果。 实现登录认证和授权处理。 pom.xml <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-starter</artifactId> <version>1.4.1</version> </dependency> <dependency> <groupId>com.github.theborakompanioni</groupId> <artifactId>thymeleaf-extras-shiro</artifactId> <version>2.0.0</version> </dependency> ShiroC

shiro-权限

[TOC] 转载地址:https://www.cnblogs.com/tianlifitting/p/8005327.html 下面截图来源尚学堂视频:

SSO单点登录

[TOC] 转载地址:https://blog.csdn.net/zhangjingao/article/details/81735041 什么是SSO