自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(148)
  • 问答 (5)
  • 收藏
  • 关注

原创 MySQL NULL值处理详细说明

– 查出 A 表中,col 不等于 A 的数据,col 中可能有 null;SELECT * FROM A WHERE col != ‘A’SELECT * FROM A WHERE col != ‘A’ OR col IS NULL– MYSQL中,NULL值与任何值比较永不为真SELECT NULL != ‘A’– NULL表示的是“a missing unknown value”,...

2018-11-02 10:42:58 326

原创 proxy in Spring

https://stackoverflow.com/questions/3489428/proxyfactorybean-in-springhttp://uule.iteye.com/blog/869309https://www.mkyong.com/spring/spring-auto-proxy-creator-example/https://www.jianshu.com/p/8...

2018-06-30 13:03:04 268

原创 FactoryBean in Spring

https://stackoverflow.com/questions/3489428/proxyfactorybean-in-springhttp://uule.iteye.com/blog/869309https://www.mkyong.com/spring/spring-auto-proxy-creator-example/https://www.jianshu.com/p/8...

2018-05-27 11:40:50 277

原创 @OneToMany

orphanRemoval=true怎么理解 https://www.oschina.net/question/925076_157346https://vladmihalcea.com/the-best-way-to-map-a-onetomany-association-with-jpa-and-hibernate/https://www.callicoder.com/hiberna...

2018-05-22 17:36:58 1136

原创 Shiro Annotations

1、shiro 支持的注解@RequiresAuthentication@RequiresPermissions@RequiresRoles@RequiresUser@RequiresGuest在方法上加上上述的 shiro annotations,用 AOP 的知识可以理解成:定义了 Pointcut。2、Enabling Shiro AnnotationsRequire...

2018-05-17 10:17:38 305

原创 Shiro filters

shiro filter

2018-05-09 22:59:21 373

原创 SQL 问题积累

1. 取出每组中的最后一条记录:SELECT m1.* FROM messages m1 LEFT JOIN messages m2 ON (m1.name = m2.name AND m1.id < m2.id) WHERE m2.id IS NULL;2. 在数据库中,union和union all关键字都是将两个结果集合并为一个,但这两者从使用和效率上来说都有所不同。 ...

2018-04-19 23:17:27 143

转载 SQL 基础

SQL 基础

2018-04-19 23:13:49 144

原创 SQL Joins Vs SQL Subqueries (Performance)

join-vs-sub-query

2018-04-19 23:12:42 183

原创 CascadeType

cascade type

2018-04-13 21:45:01 517

原创 @ManyToMany —— 双向多对多关联(bidirectional many-to-many association)

理解 解除关联关系 和 删除实体对象https://www.cnblogs.com/lj95801/p/5011537.htmlhttp://www.cnblogs.com/luxh/archive/2012/05/30/2527123.htmlhttp://www.blogjava.net/rongxh7/archive/2009/06/08/280637.htmlhttps:/...

2018-04-13 21:43:43 1305

原创 Annotations

https://dzone.com/articles/how-annotations-work-javahttps://beginnersbook.com/2014/09/java-annotations/

2018-04-12 21:18:49 907

原创 Run Maven Java Web Application in Jetty Maven Plugin

Jetty Maven Plugin

2017-12-13 16:43:35 197

转载 ThreadLocal

ThreadLocal

2017-05-25 18:22:20 235

原创 Shiro

shiro

2017-03-12 11:15:12 233

原创 Ionic navigation

Navigating Lifecycle Events!Navigating the Changes

2016-12-19 21:40:40 301

原创 Ionic view lifecycle

To improve performance, Ionic developers have implemented and improved ability to cache view elements and scope data. With enabled caching, once initialized, a controller will persist throughout the ap

2016-12-19 21:38:13 322

原创 Inject $scope into factory service ??

inject $scope to service

2016-12-13 21:01:56 345

原创 Linux 日期 时间 时区

日期与时间

2016-12-10 20:21:10 366

原创 SQL: IN VS EXISTS

The reason is that the EXISTS operator works based on the “at least found” principle. It returns true and stops scanning table once at least one matching row found.On the other hands, when the IN opera

2016-12-01 16:47:54 266

原创 Spring 定时任务配置

任务定时器

2016-11-30 13:17:50 343

原创 height vs line-height

line-height:行高 设置文字间上下距离 height:高度 就是定义一个层 或某样东西的高度也就是说line-height是特指单行高度,height可以为所有元素的高度 是用来规定整个div的高搜索度,文字还是默认会在顶端开始向下排列 是规定行高的,就是一行120个像素,文字会相对于这120像素垂直居中!line-height直白理解就是文字高度加上文字上下的空白区域,line

2016-11-27 12:28:07 288

原创 Css设置img属性让图片水平居中,居左,居右

Css设置img属性让图片水平居中,居左,居右

2016-11-27 12:25:07 11414

原创 CSS布局之-水平垂直居中

CSS布局之-水平垂直居中

2016-11-27 12:24:33 316

原创 浮动

CSS浮动

2016-11-27 12:23:36 230

原创 块级元素和行内元素

CSS块级元素和行内元素

2016-11-27 12:04:03 215

原创 Docker 容器时区修改

时区设置 – 通过Dockerfile

2016-11-24 12:25:24 8367

原创 SQL JOIN

join

2016-11-15 15:17:20 941

原创 SQL

SQL

2016-11-15 14:44:34 276

原创 Java 8: Functional Interfaces

Introduction to Functional Interfaces

2016-11-15 13:49:10 238

原创 AngularJS: controllers shouldn’t try to do too much

AngularJS: Use The Service, Not The Controller

2016-11-11 21:49:43 346

原创 promise

Callback Hellhttp://es6.ruanyifeng.com/#docs/promiseJavaScript Promises for DummiesAn Overview of JavaScript PromisesA Deeper Dive Into JavaScript Promiseshttps://www.toptal.com/javascript/j...

2016-11-11 16:38:17 503

原创 Fixing Unsupported major.minor version 52.0 Error in Java

Fixing Unsupported major.minor version 52.0 Error in Java

2016-11-07 19:36:58 411

原创 Java 8: Stream Reduction Operations

reduction operation

2016-11-06 17:07:16 757

原创 Java 8: Stream filter method

Stream filter method

2016-11-06 16:56:56 257

原创 Java 8: Stream map method

Stream map method

2016-11-06 16:47:53 355

原创 Step form wizard design

wizard

2016-11-06 16:14:14 737

原创 AngularJS: Date filtering and formatting

Date filtering and formatting in Angular js

2016-11-06 15:06:49 200

原创 AngularJS: Stlye Guide

Guidelines

2016-11-05 22:21:51 213

原创 Business: 出院小结(Discharge Summary)

出院小结

2016-11-03 13:28:51 1321

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除