You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
719 B
28 lines
719 B
package com.ruoyi.quartz.task; |
|
|
|
import org.springframework.stereotype.Component; |
|
import com.ruoyi.common.utils.StringUtils; |
|
|
|
/** |
|
* 定时任务调度测试 |
|
* |
|
* @author ruoyi |
|
*/ |
|
@Component("ryTask") |
|
public class RyTask |
|
{ |
|
public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i) |
|
{ |
|
System.out.println(StringUtils.format("执行多参方法: 字符串类型{},布尔类型{},长整型{},浮点型{},整形{}", s, b, l, d, i)); |
|
} |
|
|
|
public void ryParams(String params) |
|
{ |
|
System.out.println("执行有参方法:" + params); |
|
} |
|
|
|
public void ryNoParams() |
|
{ |
|
System.out.println("执行无参方法"); |
|
} |
|
}
|
|
|