Skip to content

Instantly share code, notes, and snippets.

@ahm507
ahm507 / application.properties
Created June 27, 2018 12:41
For beginners, configuring spring boot, quartz and mysql may be tricky. Below is a sample working properties.
spring.quartz.properties.org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
spring.quartz.properties.org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
spring.quartz.properties.org.quartz.jobStore.dataSource = quartzDS
spring.quartz.properties.org.quartz.jobStore.tablePrefix = QRTZ_
spring.quartz.properties.org.quartz.jobStore.isClustered = false
spring.quartz.properties.org.quartz.dataSource.quartzDS.driver = com.mysql.jdbc.Driver
spring.quartz.properties.org.quartz.dataSource.quartzDS.URL = jdbc:mysql://localhost/quartz
spring.quartz.properties.org.quartz.dataSource.quartzDS.user = root
spring.quartz.properties.org.quartz.dataSource.quartzDS.password =
@ahm507
ahm507 / .vimrc
Created May 22, 2018 03:49
My .vimrc
syntax on " Syntax coloring
set hlsearch " set search highlighting
set incsearch " search as characters are entered
filetype plugin indent on " enable filetype detection and indentation
set smartindent
" On pressing tab, insert 4 spaces