|
@@ -3,6 +3,7 @@ package me.zhengjie.modules.quartz.task;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import me.zhengjie.modules.test.TestController;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.text.ParseException;
|
|
@@ -11,6 +12,8 @@ import java.text.ParseException;
|
|
|
@RequiredArgsConstructor
|
|
|
@Component
|
|
|
public class DayPcDataTask {
|
|
|
+ @Autowired
|
|
|
+ public TestController controller;
|
|
|
|
|
|
public void run() throws ParseException {
|
|
|
log.info("run 执行开始");
|
|
@@ -22,7 +25,6 @@ public class DayPcDataTask {
|
|
|
* 排菜生产者
|
|
|
*/
|
|
|
public void send() throws ParseException {
|
|
|
- TestController controller = new TestController();
|
|
|
controller.testSend();
|
|
|
//获取连接
|
|
|
// Connection connection = ConnectionUtil.getConnection();
|