Rapid Environment Editor
jhipster
Quartz Cron 七个域
单位 必须 值域 特殊字符
1 秒 是 0-59 - * /
2 分 是 0-59 - * /
3 时 是 0-23 - * /
4 日 是 1-31 - * ? / L W C
5 月 是 1-12 - * /
6 周 是 1-7 - * ? / L C #
7 年 否 …
特殊字符释义:
*:
包含所有合法的值,在月份域上使用星号表示每月都会触发。
0 * 17 * * ?
表示每天从下午5点到下午5:59中的每分钟激发一次
希望在该域的所有有效值上被激发时使用 * 字符。
?:
只能用在日和周域,但不能同时。
可以认为 ? 字符是 “我并不关心在该域上是什么值。
星号是指示着该域上的每一个值。? 是说不为该域指定值。
记住,假如为这两域的其中一个指定了值,那就必须在另一个字值上放一个 ?。
0 10,44 14 ? 3 WEB
在三月中的每个星期三的下午 2:10 和 下午 2:44 被触发。
0 */1 * * * ? 每隔1分钟
*/5 * * * * ? 每隔5秒
0 0 23 * * ? 每天23点
,:
在给某域上指定值列表。
0 0,15,30,45 * * * ?
每刻钟触发一次。
/:
用于时间表的递增的。
逗号来表示每15分钟的递增,但是我们也能写成这样 0/15。
0/15 0/30 * * * ?
在整点和半点时每15秒触发
-:
指定一个范围。
在小时域上的 3-8 意味着 “3,4,5,6,7 和 8 点。
0 45 3-8 ? * *
在上午的3点至上午的8点的45分时触发
#
- java-api-examples
- blog
- Javarevisited
- javacodegeeks
- codeproject
5 tools to help you write better Java Code
JProfiler
combining CPU, Memory and Thread profiling into one application and is useful for developers as it can be used to analyze performance bottlenecks, memory leaks, CPU loads and resolve threading issues and supports local profiling (analysis of applications that are running on the same machine on which the JProfiler software is installed) and remote profiling (this is where it allows for the analysis of Java applications which are running on remote machines which JProfiler software is not installed on.).
GC Viewer
visualize data produced by the Java VM options using the vmflags -verbose:gc and -Xloggc:. GC Viewer can be used to calculate garbage collection related performance metrics which include throughput, accumulated pauses, longest pause and more. It is often very useful for when you want to tun the garbage collection of a particular application by changing generation sizes or setting up the initial heap size.
VisualVM
[JRockit – Mission Control]
[Eclipse Memory Analyzer]
本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:
Ctrl + B
Ctrl + I
Ctrl + Q
Ctrl + L
Ctrl + K
Ctrl + G
Ctrl + H
Ctrl + O
Ctrl + U
Ctrl + R
Ctrl + Z
Ctrl + Y
Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档,然后转换成格式丰富的HTML页面。 —— [ 维基百科 ]
使用简单的符号标识不同的标题,将某些文字标记为粗体或者斜体,创建一个链接等,详细语法参考帮助?。
本编辑器支持 Markdown Extra , 扩展了很多好用的功能。具体请参考Github.
Markdown Extra 表格语法:
项目 | 价格 |
---|---|
Computer | $1600 |
Phone | $12 |
Pipe | $1 |
可以使用冒号来定义对齐方式:
项目 | 价格 | 数量 |
---|---|---|
Computer | 1600 元 | 5 |
Phone | 12 元 | 12 |
Pipe | 1 元 | 234 |
定义 D
定义D内容
代码块语法遵循标准markdown代码,例如:
@requires_authorization
def somefunc(param1='', param2=0):
'''A docstring'''
if param1 > param2: # interesting
print 'Greater'
return (param2 - param1 + 1) or None
class SomeClass:
pass
>>> message = '''interpreter ... prompt'''
生成一个脚注1.
用 [TOC]
来生成目录:
使用MathJax渲染LaTex 数学公式,详见math.stackexchange.com.
更多LaTex语法请参考 这儿.
可以渲染序列图:
或者流程图:
即使用户在没有网络的情况下,也可以通过本编辑器离线写博客(直接在曾经使用过的浏览器中输入write.blog.csdn.net/mdeditor即可。Markdown编辑器使用浏览器离线存储将内容保存在本地。
用户写博客的过程中,内容实时保存在浏览器缓存中,在用户关闭浏览器或者其它异常情况下,内容不会丢失。用户再次打开浏览器时,会显示上次用户正在编辑的没有发表的内容。
博客发表后,本地缓存将被删除。
用户可以选择 把正在写的博客保存到服务器草稿箱,即使换浏览器或者清除缓存,内容也不会丢失。
注意:虽然浏览器存储大部分时候都比较可靠,但为了您的数据安全,在联网后,请务必及时发表或者保存到服务器草稿箱。