This file contains hidden or 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
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 |
This file contains hidden or 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
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 = |