随笔分类 -  开源框架

1 2 3 4 5 ··· 8 下一页
SSH/SSI
大数据sql引擎
摘要:Hive:把sql解析后用MapReduce跑 SparkSQL:把sql解析后用Spark跑,比hive快点 Phoenix:一个绕过了MapReduce运行在HBase上的SQL框架 Drill/Impala/Presto 交互式查询,都是类似google Dremel的东西,区别这里就不说了 阅读全文
posted @ 2018-10-08 17:53 一天不进步,就是退步 阅读(368) 评论(0) 推荐(0) 编辑
分布式定时任务调度系统技术选型--转
摘要:http://www.expectfly.com/2017/08/15/%E5%88%86%E5%B8%83%E5%BC%8F%E5%AE%9A%E6%97%B6%E4%BB%BB%E5%8A%A1%E6%96%B9%E6%A1%88%E6%8A%80%E6%9C%AF%E9%80%89%E5%9E 阅读全文
posted @ 2018-05-18 20:02 一天不进步,就是退步 阅读(53417) 评论(1) 推荐(7) 编辑
ibatis annotations 注解方式返回刚插入的自增长主键ID的值--转
摘要:原文地址:http://www.blogs8.cn/posts/WWpt35l mybatis提供了注解方式编写sql,省去了配置并编写xml mapper文件的麻烦,今天遇到了获取自增长主键返回值的问题,发现相关问答比较少,还好最后还是圆满解决了,现把重点记录一下,解决问题的关键就是以下几行代码: 阅读全文
posted @ 2017-07-13 20:38 一天不进步,就是退步 阅读(623) 评论(0) 推荐(0) 编辑
@Query Annotation in Spring Data JPA--转
摘要:原文地址:http://javabeat.net/spring-data-jpa-query/ In my previous post on Spring Data, I have explained the basic concepts and configurations for Spring 阅读全文
posted @ 2017-06-26 15:38 一天不进步,就是退步 阅读(3522) 评论(0) 推荐(0) 编辑
mybatis使用注解替代xml配置,动态生成Sql
摘要:mybatis使用注解替代xml配置时,遇到判断条件是否为null或者为空时,@Select很难搞定,不知道怎么办? mybatis3中增加了使用注解来配置Mapper的新特性,使用 SelectProvider来动态生成sql。 典型的使用场景 1. 无参数@SelectProvide方法在Map 阅读全文
posted @ 2017-05-10 20:44 一天不进步,就是退步 阅读(3184) 评论(0) 推荐(0) 编辑
MyBatis多参数传递之注解方式示例--转
摘要:原文地址:http://legend2011.blog.51cto.com/3018495/1015003 若映射器中的方法只有一个参数,则在对应的SQL语句中,可以采用#{参数名}的方式来引用此参数,以前的例子多属于此类。但这种方法却不适用于需要传递多个参数的情况,今天就来介绍如何使用注解传递多个 阅读全文
posted @ 2017-03-30 10:07 一天不进步,就是退步 阅读(4436) 评论(0) 推荐(0) 编辑
MyBatis的架构设计以及实例分析--转
摘要:原文地址:http://blog.csdn.net/luanlouis/article/details/40422941 MyBatis是目前非常流行的ORM框架,它的功能很强大,然而其实现却比较简单、优雅。本文主要讲述MyBatis的架构设计思路,并且讨论MyBatis的几个核心部件,然后结合一个 阅读全文
posted @ 2017-03-28 13:52 一天不进步,就是退步 阅读(837) 评论(0) 推荐(0) 编辑
spring security oauth2 架构---官方
摘要:原文地址:https://projects.spring.io/spring-security-oauth/docs/oauth2.html Introduction This is the user guide for the support for OAuth 2.0. For OAuth 1. 阅读全文
posted @ 2017-03-10 17:34 一天不进步,就是退步 阅读(2003) 评论(0) 推荐(0) 编辑
Spring Security 4 Method security using @PreAuthorize,@PostAuthorize, @Secured, EL--转
摘要:原文地址:http://websystique.com/spring-security/spring-security-4-method-security-using-preauthorize-postauthorize-secured-el/ In order to enable Spring M 阅读全文
posted @ 2017-03-10 14:01 一天不进步,就是退步 阅读(1016) 评论(0) 推荐(0) 编辑
Spring Security Java Config Preview--官方
摘要:原文地址:【1】https://spring.io/blog/2013/07/02/spring-security-java-config-preview-introduction/ 【2】https://spring.io/blog/2013/07/03/spring-security-java- 阅读全文
posted @ 2017-03-09 11:25 一天不进步,就是退步 阅读(607) 评论(0) 推荐(0) 编辑
spring security源码分析心得
摘要:看了半天的文档及源码,终于理出了spring-security的一些总体思路,spring security主要分认证(authentication)和授权(authority)。 1.认证authentication 认证主要代码在spring-security-core下的包org.spring 阅读全文
posted @ 2017-03-08 20:36 一天不进步,就是退步 阅读(7881) 评论(0) 推荐(0) 编辑
Spring security工作流程及集成
摘要:A user enters their username and password into a login screen and clicks a login button. The entered information is placed into an object called Authe 阅读全文
posted @ 2017-03-06 12:22 一天不进步,就是退步 阅读(3053) 评论(0) 推荐(0) 编辑
Spring Security Architecture--官方
摘要:原文地址:https://spring.io/guides/topicals/spring-security-architecture/ Table of contents Authentication and Access Control Web Security Method Security 阅读全文
posted @ 2017-03-03 15:53 一天不进步,就是退步 阅读(402) 评论(0) 推荐(0) 编辑
spring-security-oauth2注解详解
摘要:spring-security-oauth2支持的注解有: 1.EnableOAuth2Client 适用于使用spring security,并且想从Oauth2认证服务器来获取授权的web应用环境代码中,它启用了一个Oauth2 客户端配置。为了更好的利用这个特性,需要在客户端应用中的Deleg 阅读全文
posted @ 2017-02-28 20:06 一天不进步,就是退步 阅读(59896) 评论(3) 推荐(0) 编辑
一张图了解javaJwt
摘要:1.什么是javaJwt? JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties. JWT.IO allows you t 阅读全文
posted @ 2017-02-28 15:08 一天不进步,就是退步 阅读(6120) 评论(1) 推荐(0) 编辑
Quartz 在 Spring 中如何动态配置时间--转
摘要:原文地址:http://www.iteye.com/topic/399980 在项目中有一个需求,需要灵活配置调度任务时间,并能自由启动或停止调度。 有关调度的实现我就第一就想到了Quartz这个开源调度组件,因为很多项目使用过,Spring结合Quartz静态配置调度任务时间,非常easy。比如: 阅读全文
posted @ 2016-08-05 11:08 一天不进步,就是退步 阅读(2335) 评论(0) 推荐(0) 编辑
Spring AOP AspectJ Pointcut Expressions With Examples--转
摘要:原文地址:http://howtodoinjava.com/spring/spring-aop/writing-spring-aop-aspectj-pointcut-expressions-with-examples/ 1) Matching Method Signature Patterns T 阅读全文
posted @ 2016-06-02 17:13 一天不进步,就是退步 阅读(340) 评论(0) 推荐(0) 编辑
Quartz Java resuming a job excecutes it many times--转
摘要:原文地址:http://stackoverflow.com/questions/1933676/quartz-java-resuming-a-job-excecutes-it-many-times Question: For my application i create jobs and sche 阅读全文
posted @ 2016-05-11 17:58 一天不进步,就是退步 阅读(354) 评论(0) 推荐(0) 编辑
asynchronous-logging-with-log4j-2--转
摘要:原文地址:https://dzone.com/articles/asynchronous-logging-with-log4j-2 Log4J 2 is a logging framework designed to address the logging requirements of enter 阅读全文
posted @ 2016-04-08 18:45 一天不进步,就是退步 阅读(631) 评论(0) 推荐(0) 编辑
Maven报错Missing artifact jdk.tools:jdk.tools:jar:1.7--转
摘要:原文地址:http://blog.csdn.net/u013281331/article/details/40824707在Eclipse中检出Maven工程,一直报这个错:“Missing artifact jdk.tools:jdk.tools:jar:1.7”看整个pom.xml文件也不见其他... 阅读全文
posted @ 2016-01-27 10:21 一天不进步,就是退步 阅读(2569) 评论(0) 推荐(0) 编辑

1 2 3 4 5 ··· 8 下一页