turn off india stock task

This commit is contained in:
vu-tran
2025-06-18 10:35:08 +07:00
parent 5ab279daa6
commit 3255012fba
5 changed files with 11 additions and 11 deletions

View File

@@ -110,7 +110,7 @@ public class InvestingTask {
}
/*新闻接口*/
@Scheduled(cron = "0 0 0/3 * * ?")
// @Scheduled(cron = "0 0 0/3 * * ?")
public void saveStockNews() {
log.info("英文股票新闻数据同步开始");
try {

View File

@@ -16,7 +16,7 @@ public class RealTimeTask {
/*每天9点定时删除股票k线数据*/
@Transactional
@Scheduled(cron = "0 00 9 * * MON-FRI")
// @Scheduled(cron = "0 00 9 * * MON-FRI")
public void deleteStockCode() {
log.info("每天9点定时删除股票k线数据");
repo.deleteStockCode();
@@ -24,7 +24,7 @@ public class RealTimeTask {
/*每天0点定时删除期货k线数据*/
@Transactional
@Scheduled(cron = "0 00 0 * * MON-FRI")
// @Scheduled(cron = "0 00 0 * * MON-FRI")
public void deleteStockFuturesCode() {
log.info("每天0点定时删除期货k线数据");
repo.deleteStockFuturesCode();

View File

@@ -63,7 +63,7 @@ public class Scraper {
private boolean times = false;
@Scheduled(cron = "0 0 1 */2 * ?")
// @Scheduled(cron = "0 0 1 */2 * ?")
@RequestMapping("/testScraperGetBusinessToday")
public void schedule() {
String BASE_URL = "https://akm-img-a-in.tosshub.com/businesstoday/resource/market-widgets/prod/company-master-23-01-2023.json";
@@ -110,7 +110,7 @@ public class Scraper {
@Scheduled(cron = "0 0 18 * * ?")
// @Scheduled(cron = "0 0 18 * * ?")
// @PostConstruct
@RequestMapping("/testScraperGetMoneyControllerNewIPO")
public void getMoneyControllerNewIPOSchedule() {
@@ -303,7 +303,7 @@ public class Scraper {
}
@Scheduled(cron = "0 0 19 * * ?")
// @Scheduled(cron = "0 0 19 * * ?")
@PostConstruct
@RequestMapping("/addMoneyStock")
public void addMoneyStock() {

View File

@@ -112,7 +112,7 @@ public class StockTask {
}
/*同步股票列表*/
@Scheduled(cron = "0 0 6 * * ?")
// @Scheduled(cron = "0 0 6 * * ?")
public void syncAFutureStockList() {
PageInfo<JSONObject> info = EastmoneyApi.ipoApplyDate(1, 300);
Map<String, Stock> stockMap = StockRepository.of().cacheCodeMap();
@@ -154,7 +154,7 @@ public class StockTask {
}
/*同步股票列表*/
@Scheduled(cron = "0 0 6 * * ?")
// @Scheduled(cron = "0 0 6 * * ?")
public void syncAStockList() {
MdcUtil.setTraceIdIfAbsent();
Config config = SpringUtils.getBean(Config.class);

View File

@@ -3,9 +3,9 @@ spring:
show-sql: true
# Redis配置
redis:
host: 43.153.174.179
host: 43.153.142.41
password: a5v8b86P4mVzFlUqJV
port: 30001
port: 30041
database: 1
lettuce:
pool:
@@ -17,7 +17,7 @@ spring:
datasource:
stock-market:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://43.153.174.179:30000/india_stock?useUnicode=true&characterEncoding=utf-8
url: jdbc:mysql://43.153.142.41:30040/germany_stock?useUnicode=true&characterEncoding=utf-8
username: root
password: uNejHIFQGJOUtYTmE
maxActive: 500