原创 AngularJS: Date filtering and formatting

Date filtering and formatting in Angular js

原创 Docker 容器時區修改

時區設置 – 通過Dockerfile ENV TZ=Asia/Shanghai RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/time

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

入院情況 治療過程 | 住院情況 出院情況 出院醫囑 出院小結模板: http://wenku.baidu.com/link?url=BVB0I9u7UfojbmPjDcOX_K-BT6M6Cj8m_7AYqfeKhckMGG

原创 Css設置img屬性讓圖片水平居中,居左,居右

Css設置img屬性讓圖片水平居中,居左,居右

原创 MySQL NULL值處理詳細說明

– 查出 A 表中,col 不等於 A 的數據,col 中可能有 null; SELECT * FROM A WHERE col != ‘A’ SELECT * FROM A WHERE col != ‘A’ OR col IS NU

原创 Spring 定時任務配置

<task:scheduled-tasks scheduler="myScheduler"> <task:scheduled ref="beanA" method="methodA" fixed-delay="5000" init

原创 @ManyToMany —— 雙向多對多關聯(bidirectional many-to-many association)

理解 解除關聯關係 和 刪除實體對象 https://www.cnblogs.com/lj95801/p/5011537.html http://www.cnblogs.com/luxh/archive/2012/05/30/252712

原创 proxy in Spring

https://stackoverflow.com/questions/3489428/proxyfactorybean-in-spring http://uule.iteye.com/blog/869309 https://www.mk

原创 FactoryBean in Spring

FactoryBean A factory bean in Spring serves as a factory for creating other beans within the Spring IoC container. A Fa

原创 SQL Joins Vs SQL Subqueries (Performance)

https://dev.mysql.com/doc/refman/5.7/en/rewriting-subqueries.html https://stackoverflow.com/questions/2577174/join-vs-s

原创 @OneToMany

orphanRemoval=true怎麼理解 https://www.oschina.net/question/925076_157346 https://vladmihalcea.com/the-best-way-to-map-a-o

原创 SQL 基礎

http://www.cnblogs.com/jackson0714/p/TSQLFundamentals_01.html

原创 Shiro filters

1、DefaultFilter – Shiro default filters 源碼: public enum DefaultFilter { anon(AnonymousFilter.class), authc(For

原创 Shiro

讓Apache Shiro保護你的應用 http://www.infoq.com/cn/articles/apache-shiro http://jinnianshilongnian.iteye.com/blog/2018398 Shi

原创 ThreadLocal

When and how should I use a ThreadLocal variable? https://stackoverflow.com/questions/817856/when-and-how-should-i-use