- 浏览: 209437 次
- 性别:
- 来自: 上海
最新评论
-
严东军:
学习了,谢谢
摘录--DBMS_SCHEDULER -
zwllxs:
你知道你调的是谁的代码不?
jbpm4.4+ssh2 完整请假流程
文章列表
https://stackoverflow.com/questions/25229710/jetty-annotation-timeout-reason
报错的配置信息:
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.7.v20170914</version> ...
http://www.cnblogs.com/EasonJim/p/6917587.html
参考后,一下代码解决启动报错问题。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
< ...
SpringMVC处理请求流程
- 博客分类:
- 面试
SpringMVC处理请求流程
http://www.cnblogs.com/hujiapeng/p/5765636.html
联想电脑台式机 F12 进入Bios
win10 改装 win7 遇到的问题
uefi gpt分区怎么安装ghost win7 64位系统
http://www.xitongcheng.com/jiaocheng/xtazjc_article_17761.html
SQLQuery sqlQuery = salesManagementReportDao.createSQLQuery(sb.toString());
sqlQuery.setResultTransformer(new AliasToBeanResultTransformer(SalesManagementReport.class));
Kotlin学习资料
- 博客分类:
- Kotlin
Hello Kotlin! Kotlin学习资料
http://www.cnblogs.com/foxlee1024/p/6875902.html
五分钟学会 Kotlin 语法 http://www.jianshu.com/p/1ea733ea197d
简书的 Kotlin 专题 :http://www.jianshu.com/c/98aaef9f5d2f
知乎的 Kotlin 话题:https://www.zhihu.com/topic/20008824/hot
Kotlin 中文社区 :http://kotlin.cn
Kotlin 中国 :https://kotlintc.com ...
分析Java ClassLoader原理
- 博客分类:
- 面试
深入分析Java ClassLoader原理:http://www.importnew.com/15362.html
【React】学习资源
- 博客分类:
- React
【React】学习资源【赞】
http://www.jianshu.com/p/a1790e1945a8
ES6/ES2015核心内容
- 博客分类:
- React
30分钟掌握ES6/ES2015核心内容(上)
https://segmentfault.com/a/1190000004365693
30分钟掌握ES6/ES2015核心内容(下)
https://segmentfault.com/a/1190000004368132
JAVA NIO技术壁垒
- 博客分类:
- 面试
JAVA NIO技术壁垒
http://www.importnew.com/19816.html
线程的状态和常用操作
http://www.cnblogs.com/meet/p/5290909.html
JVM各种参数及调优
- 博客分类:
- 面试
JVM各种参数及调优
http://blog.csdn.net/mrzhoug/article/details/51148302
Restrictions用法
- 博客分类:
- hibernate
例子一:
public List<Goods> ranking(String path, TimeUnit timeUnit, String time, int size) {
List<Criterion> criterions = new ArrayList<Criterion>();
criterions.add(Restrictions.sqlRestriction("{alias}.sn in (SELECT SN FROM MALL_GOODS WHERE MARKETABLE = ?)&q ...
spring boot——properties配置:
http://www.cnblogs.com/GoodHelper/p/6260708.html
# ===================================================================
# COMMON SPRING BOOT PROPERTIES
#
# This sample file is provided as a guideline. Do NOT copy it in its
# entirety to your own application. ...
Git 中的tag指向一次commit的id,通常用来给开发分支做一个标记,如标记一个版本号。
查看标签
git tag
或者
git tag -l
打标签
git tag -a v1.01 -m 'Relase version 1.01'
注解:git tag 是打标签的命令,-a 是添加标签,其后要跟新标签号,-m 及后面的字符串是对该标签的注释。
提交标签到远程仓库
$ git push origin v0.1.2 # 将v0.1.2标签提交到git服务器
$ git push origin –tags # 将本地所有标签一次性提交到git服务器
注解:就像git push or ...
jakson: http://www.cnblogs.com/shiddong/p/5580167.html
jakson测试: http://blog.csdn.net/xxssyyyyssxx/article/details/51484306