上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 66 下一页

2019年3月20日

雨燕权限管理前端技术总结

摘要: 1,url数量, list,show这些页面可以直接显示数据的,使用get,model返回数据 save,login,regiset直接打开一个填充表页面,使用get,直接跳转一个jsp save.json,login.json,regiset.json提交数据,使用ajax ,post,根据返回信 阅读全文

posted @ 2019-03-20 20:18 Kooing 阅读(301) 评论(0) 推荐(0)

2019年3月16日

jwt再度理解

摘要: 1,负载部分只用base64编码,是可逆的,不能存放密码 2,加密算法不在乎是对称还是非对称,因为jwt的验签不需要解密 3,一般的验签是用私钥加密签名,公钥验签,和加密反过来,加密是公钥加密,服务器私钥解密,其实算法是相互的,看对功能的理解角度 阅读全文

posted @ 2019-03-16 14:49 Kooing 阅读(109) 评论(0) 推荐(0)

2019年3月15日

enum和数据库entity互转

摘要: 注意,code和desc都是string的,数据库的entity是integer,dto的是enum,所以需要一个转换 entity转dto EnumGender.getEnum(String.valueOf(userEntity.getUser_gender())) dto转entity Inte 阅读全文

posted @ 2019-03-15 09:56 Kooing 阅读(574) 评论(0) 推荐(0)

2019年3月14日

cookie

摘要: https://juejin.im/entry/5766c29d6be3ff006a31b84e 域名的作用范围:https://blog.csdn.net/czhphp/article/details/65628977 domain 和 path domain是域名,path是路径,两者加起来就构 阅读全文

posted @ 2019-03-14 22:40 Kooing 阅读(95) 评论(0) 推荐(0)

2019年3月11日

反射中setAccessible()方法

摘要: 调用私有变量域的时候要用setAccessible https://blog.csdn.net/kjfcpua/article/details/8496911 阅读全文

posted @ 2019-03-11 17:13 Kooing 阅读(254) 评论(0) 推荐(0)

Java反射之如何判断类或变量、方法的修饰符(Modifier解析)

摘要: a->public b->public static c->public static final d->private 就是返回这些 https://blog.csdn.net/xiao__gui/article/details/8141216 阅读全文

posted @ 2019-03-11 17:07 Kooing 阅读(624) 评论(0) 推荐(0)

xml配置*的问题

摘要: spring配置种classpath * 和classpath的问题,class path有多个的情况下,会匹配第一个 <context:component-scan/>中两个**表示可以匹配多层 阅读全文

posted @ 2019-03-11 16:01 Kooing 阅读(89) 评论(0) 推荐(0)

2019年3月8日

web.xml启动spring详解

摘要: https://blog.csdn.net/king_cannon_fodder/article/details/79328576 详细介绍:https://www.cnblogs.com/wkrbky/p/5929943.html 阅读全文

posted @ 2019-03-08 10:28 Kooing 阅读(143) 评论(0) 推荐(0)

2019年3月7日

idea的svn安装

摘要: https://blog.csdn.net/qq_27093465/article/details/74898489 阅读全文

posted @ 2019-03-07 14:24 Kooing 阅读(132) 评论(0) 推荐(0)

工作面板视图

摘要: https://blog.csdn.net/qq_27093465/article/details/51750535 阅读全文

posted @ 2019-03-07 14:23 Kooing 阅读(170) 评论(0) 推荐(0)

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 66 下一页

导航