Skip to content

Commit

Permalink
--taskid=ID20231017
Browse files Browse the repository at this point in the history
调整job执行顺序
  • Loading branch information
xinluke committed Oct 17, 2023
1 parent 3905ed4 commit b340765
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/wangym/lombok/job/impl/CommentJob.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package com.wangym.lombok.job.impl;

import com.wangym.lombok.job.AbstractJob;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
import org.springframework.util.FileCopyUtils;

Expand All @@ -9,6 +11,7 @@
import java.util.regex.Pattern;

@Component
@Order(Ordered.HIGHEST_PRECEDENCE)
public class CommentJob extends AbstractJob {

public CommentJob() {
Expand Down

0 comments on commit b340765

Please sign in to comment.