зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 13:16:07 +02:00
m
Этот коммит содержится в:
родитель
ad4fe3a238
Коммит
22e9db4228
@ -2,3 +2,6 @@ https://github.com/edenhill/kcat
|
||||
https://rmoff.net/2018/08/02/kafka-listeners-explained/
|
||||
|
||||
docker run --rm --network=host edenhill/kafkacat:1.5.0 kafkacat -b localhost:29092 -L
|
||||
-b $HOST_PORT
|
||||
-L list
|
||||
# -X sasl.username= -X sasl.password= -X security.protocol=SASL_SSL -X sasl.mechanisms=SCRAM-SHA-512 -X ssl.ca.location=~/.kafka/root.crt
|
||||
|
||||
@ -1,6 +0,0 @@
|
||||
http://www.opencodez.com/java/quartz-scheduler-with-spring-boot.htm
|
||||
https://github.com/pavansolapure/opencodez-samples/tree/master/quartz-demo
|
||||
|
||||
2019
|
||||
https://dzone.com/articles/adding-quartz-to-spring-boot
|
||||
https://habr.com/ru/company/otus/blog/475996/
|
||||
6
pl/java/libfws/spring/boot/features/cfg/conditional.txt
Обычный файл
6
pl/java/libfws/spring/boot/features/cfg/conditional.txt
Обычный файл
@ -0,0 +1,6 @@
|
||||
@ConditionalOnProperty("...")
|
||||
@ConditionalOnBean(SomeBean.class)
|
||||
https://docs.spring.io/spring-boot/api/java/org/springframework/boot/autoconfigure/condition/ConditionalOnBean.html
|
||||
|
||||
2019
|
||||
https://habr.com/ru/articles/462541/
|
||||
53
pl/java/libfws/spring/boot/scheduling/quartz.txt
Обычный файл
53
pl/java/libfws/spring/boot/scheduling/quartz.txt
Обычный файл
@ -0,0 +1,53 @@
|
||||
https://www.quartz-scheduler.org/
|
||||
https://github.com/quartz-scheduler/quartz
|
||||
|
||||
https://www.quartz-scheduler.org/documentation/
|
||||
|
||||
cfg
|
||||
https://github.com/quartz-scheduler/quartz/blob/main/docs/configuration.adoc
|
||||
org.quartz.dataSource.
|
||||
|
||||
init-schema
|
||||
https://github.com/quartz-scheduler/quartz/blob/main/quartz/src/main/resources/org/quartz/impl/jdbcjobstore/tables_postgres.sql
|
||||
|
||||
ver
|
||||
boot 3.3.4 - quartz 2.3.2
|
||||
|
||||
|
||||
api
|
||||
https://www.quartz-scheduler.org/api/2.3.0/index.html
|
||||
|
||||
http://www.opencodez.com/java/quartz-scheduler-with-spring-boot.htm
|
||||
https://github.com/pavansolapure/opencodez-samples/tree/master/quartz-demo
|
||||
|
||||
2024
|
||||
https://www.baeldung.com/quartz
|
||||
2022
|
||||
https://habr.com/ru/companies/surfstudio/articles/685980/
|
||||
2019
|
||||
https://dzone.com/articles/adding-quartz-to-spring-boot
|
||||
https://habr.com/ru/company/otus/blog/475996/
|
||||
|
||||
cfg sample
|
||||
quartz:
|
||||
job-store-type: jdbc
|
||||
initialize-schema: never
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
jobStore:
|
||||
class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||||
driverDelegateClass: org.quartz.impl.jdbcjobstore.<some>Delegate
|
||||
useProperties: true
|
||||
misfireThreshold: 60000
|
||||
tablePrefix: qrtz_
|
||||
isClustered: true
|
||||
threadPool:
|
||||
threadCount: 1
|
||||
scheduler:
|
||||
instanceName: <some->-service
|
||||
instanceId: AUTO
|
||||
plugin:
|
||||
shutdownHook:
|
||||
class: org.quartz.plugins.management.ShutdownHookPlugin
|
||||
cleanShutdown: TRUE
|
||||
Загрузка…
x
Ссылка в новой задаче
Block a user