This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#变量定义: | |
#$TASK_HOME=任务部署后的顶级目录,如: /x/y/finance_group/budget_reset/ | |
#[required] 分组名用于组织任务的目录结构,方便管理 | |
task.group="finance" | |
#[required] 任务的名称,作为任务的目录名 | |
task.name="budget_reset" | |
#[required] 任务版本,格式:"X.Y.Z",用于支持多版本部署和回滚,同时只有一个版本运行 | |
task.version="1.0.0" | |
#[optional] 任务描述,可以包含一些业务描述和注意事项 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default | |
;; Base distribution to use. This is a layer contained in the directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set runtimepath+=~/.vimperator/plugin | |
let mapleader=";" | |
noremap j 3j | |
noremap k 3k | |
noremap J <C-d> | |
noremap K <C-u> | |
map <Leader>s :stop<cr> | |
noremap h gT | |
noremap l gt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"vundle pre-config | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
"vundle bundles & plugins | |
Plugin 'VundleVim/Vundle.vim' | |
Bundle 'tpope/vim-endwise' | |
Bundle 'tpope/vim-git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Settings | |
set nohud | |
set nosmoothscroll | |
set noautofocus " The opposite of autofocus; this setting stops | |
" sites from focusing on an input box when they load | |
set typelinkhints | |
let searchlimit = 30 | |
let scrollstep = 70 | |
let barposition = "bottom" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader=";" | |
noremap j 3j | |
noremap k 3k | |
noremap J <C-d> | |
noremap K <C-u> | |
map <Leader>s :stop<cr> | |
noremap h gT | |
noremap l gt | |
map < <C-6> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader=";" | |
noremap j 3j | |
noremap k 3k | |
noremap J <C-d> | |
noremap K <C-u> | |
map <Leader>s :stop<cr> | |
noremap h gT | |
noremap l gt | |
map < <C-6> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class BaseDAO { | |
private static final Logger L = LoggerFactory.getLogger(BaseDAO.class); | |
@Autowired | |
protected JdbcTemplate template; | |
@PostConstruct | |
public void afterInit() { | |
L.info("base dao"); | |
if (template == null) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"vundle pre-config | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
"vundle bundles & plugins | |
Plugin 'VundleVim/Vundle.vim' | |
Bundle 'tpope/vim-endwise' | |
Bundle 'tpope/vim-git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"vundle pre-config | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
"vundle bundles & plugins | |
Plugin 'VundleVim/Vundle.vim' | |
Bundle 'tpope/vim-endwise' | |
Bundle 'tpope/vim-git' |