摘要: 阅读全文
posted @ 2021-03-11 15:15 风的呢喃Ⅱ 阅读(38) 评论(0) 推荐(0) 编辑
摘要: grant create view to cmuser; --授予查询权限 grant select any table to cmuser; --授予权限 grant select any dictionary to cmuser; --授予查询条件grant SELECT ON T_BNS_FU 阅读全文
posted @ 2017-10-30 17:44 风的呢喃Ⅱ 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 随着互联网的迅速发展,高并发的应用越来越多,传统关系型数据库(Mysql ,oracle ,sql server)力不从心 这时候nosql从天而降,拯救完全程序员于水火之中,什么是nosql?不仅仅是sql,nosql属于非关系型数据库; Redis就属于非关系型数据库。 NoSQL的特点 易扩展 阅读全文
posted @ 2017-10-25 10:54 风的呢喃Ⅱ 阅读(67) 评论(0) 推荐(0) 编辑
摘要: http://www.sojson.com/shiro Shiro + Redis 的集成 http://m.blog.csdn.net/suhuichao/article/details/70876331 java专业英语 http://geek.csdn.net/news/detail/2396 阅读全文
posted @ 2017-10-17 23:21 风的呢喃Ⅱ 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 新建Srping Boot 项目 以下是项目结构 由于Srping Boot内置Tomcat,所以不需要配置Tomcat就可以直接运行。 HelloWorldApplication是启动类,我们右击Run As 选择 Spring Boot app。 项目运行好之后 在浏览器输入:http://lo 阅读全文
posted @ 2017-10-04 18:07 风的呢喃Ⅱ 阅读(93) 评论(0) 推荐(0) 编辑
摘要: SpringBoot简介 Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。通过这种方式,Spring Boot致力于在蓬勃发展的快速应用开发领域(rap 阅读全文
posted @ 2017-10-04 13:53 风的呢喃Ⅱ 阅读(153) 评论(0) 推荐(0) 编辑
摘要: public class TestHttpClient { public static void main(String[] args) throws ClientProtocolException, IOException { //创建httpClient实例 CloseableHttpClien 阅读全文
posted @ 2017-09-26 14:00 风的呢喃Ⅱ 阅读(267) 评论(0) 推荐(0) 编辑