根据不同的角色,去不同的页面,例子
摘要:https://blog.csdn.net/luckarecs/article/details/7175390
阅读全文
posted @
2018-04-28 11:26
lshan
阅读(254)
推荐(0) 编辑
Security4.1.3实现根据请求跳转不同登录页以及登录后根据权限跳转到不同页配置
摘要:参考博客:https://blog.csdn.net/honghailiang888/article/details/53765508
阅读全文
posted @
2018-04-26 18:43
lshan
阅读(294)
推荐(0) 编辑
spring securiry Xml 配置 登陆
摘要:参考:https://blog.csdn.net/yin380697242/article/details/51893397 https://blog.csdn.net/lee353086/article/details/52586916
阅读全文
posted @
2018-04-25 22:27
lshan
阅读(155)
推荐(0) 编辑
spring security 配置xml 参考
摘要:https://blog.csdn.net/zsq520520/article/details/77880491
阅读全文
posted @
2018-04-24 22:39
lshan
阅读(161)
推荐(0) 编辑
spring security 表单认证的流程
摘要:spring security表单认证过程 spring security表单认证过程 表单认证过程 Spring security的表单认证过程是由org.springframework.security.web.authentication. UsernamePasswordAuthentica
阅读全文
posted @
2018-04-23 18:04
lshan
阅读(816)
推荐(0) 编辑
spring 注解 @NotBlank and BingResult
摘要:@NotEmpty用在集合类上面 @NotBlank 用在String上面 @NotNull 用在基本类型上 在 user对象中需要
阅读全文
posted @
2018-04-22 17:54
lshan
阅读(294)
推荐(0) 编辑
表单设计
摘要:/* */ /* DBMS name: MySQL5.0 */ /* Created on: 2018/4/18 21:33:52 */ /* */ drop table if exists auth_function; drop table if exists auth_role; drop ta
阅读全文
posted @
2018-04-18 21:29
lshan
阅读(201)
推荐(0) 编辑
spring security 参考 和 例子
摘要:参考1: https://docs.spring.io/spring-security/site/docs/5.0.1.BUILD-SNAPSHOT/reference/htmlsingle/ 列子:websystique.com/spring-security/spring-security-4-
阅读全文
posted @
2018-04-18 17:17
lshan
阅读(445)
推荐(0) 编辑
自定义服务与调用--------factory
摘要:自定义服务: angular.module('myApp').factory('UserService',['$http','$q',function ($http,$q) { // 定义一个方法工厂 var factory = { httpGet : httpGet, login:login };
阅读全文
posted @
2018-04-18 16:56
lshan
阅读(146)
推荐(0) 编辑
sssp-webservce_restful
摘要:pom <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.o
阅读全文
posted @
2018-04-16 18:26
lshan
阅读(331)
推荐(0) 编辑
spring mvc 解决json 不能转换的问题
摘要:在要转的实体上加一个 @JsonIgnoreProperties(value = { "hibernateLazyInitializer", "handler" }) @JsonIgnoreProperties(value = { "hibernateLazyInitializer", "handl
阅读全文
posted @
2018-04-13 18:37
lshan
阅读(323)
推荐(0) 编辑
在 html中怎么获取中的参数
摘要:参考:https://blog.csdn.net/xqhys/article/details/68486215 eg: window.location.href="/user/update?id=''aaa"&name="sdsad" ********************************
阅读全文
posted @
2018-04-13 17:39
lshan
阅读(1158)
推荐(0) 编辑
弹框,图标
摘要:弹框:http://layer.layui.com/ bootstroop 弹框 https://www.cnblogs.com/cpcpc/p/7233898.html 图标:http://www.fontawesome.com.cn/faicons/ 表格:http://www.layui.co
阅读全文
posted @
2018-04-13 00:49
lshan
阅读(124)
推荐(0) 编辑
sssp maven pom
摘要:pom <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.o
阅读全文
posted @
2018-04-11 23:19
lshan
阅读(373)
推荐(0) 编辑
spring中 的MD5 加密
摘要://对密码进行加密(不需要使用其他Md5工具 。spring中有 在digestUtils) String password = DigestUtils.md5DigestAsHex(user.getPassword().getBytes()); user.setPassword(password)
阅读全文
posted @
2018-04-10 23:52
lshan
阅读(382)
推荐(0) 编辑
angularjs 整合 bootstrap
摘要:第一步 ;下载 bootstrap jquery ppper.js npm install bootstrap@4.0.0-beta.2 jquery popper.js --save 第二步: 打开packge.json 看是否导入: 第三步:配置:到:angular-cli.json dao n
阅读全文
posted @
2018-04-10 22:22
lshan
阅读(164)
推荐(0) 编辑
node.js 安装
摘要:www.cnblogs.com/dubaokun/p/3558848.html https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager 2、Windows 二进制文件 (.exe)安装 32 位安装包下载地
阅读全文
posted @
2018-04-10 16:43
lshan
阅读(103)
推荐(0) 编辑
spring mvc 表单标签
摘要:http://elim.iteye.com/blog/1807330
阅读全文
posted @
2018-04-10 14:39
lshan
阅读(91)
推荐(0) 编辑
配置文件 .properties 的使用。
摘要:在代码中使用 @Controller public class IndexController { @Value("${CONTENT_LUNBO_ID}") private Long CONTENT_LUNBO_ID; @Autowired private ContentService conte
阅读全文
posted @
2018-04-07 11:50
lshan
阅读(137)
推荐(0) 编辑
angular 参考文档
摘要:https://www.w3schools.com/angular/
阅读全文
posted @
2018-04-04 15:49
lshan
阅读(111)
推荐(0) 编辑
bootStrap 教程 文档
摘要:https://www.w3schools.com/bootstrap/default.asp
http://www.runoob.com/bootstrap/bootstrap-input-groups.html
阅读全文
posted @
2018-04-03 15:00
lshan
阅读(120)
推荐(0) 编辑
idea 安装 破解方法
摘要:参考: https://blog.csdn.net/qq_27686779/article/details/78870816
阅读全文
posted @
2018-04-03 12:23
lshan
阅读(555)
推荐(0) 编辑
apo 简单参考
摘要:参考: https://www.cnblogs.com/Geyoung/p/6927905.html @Aspect @Component public class TimeAspect { //通过这种方法可以拿到对象中所有的方法,对象 @Around("execution(* com.imooc
阅读全文
posted @
2018-04-01 21:41
lshan
阅读(127)
推荐(0) 编辑