This commit is contained in:
77
2024-05-03 21:22:59 +08:00
parent 3df973e469
commit 2cfa18a4e3
9 changed files with 185 additions and 7 deletions

View File

@@ -256,8 +256,8 @@ management:
mail:
enabled: false
yunxin:
app-key: 748496374b04344194c68b53e411e09c123
app-secret: 77c09917d2de
app-key: d2de1a747ce5ffdf99517c6f9f16fd4e
app-secret: ef2b67d8cd8e
wx:
pay:
app-id: wxefe4087f9c1e0fd7

View File

@@ -0,0 +1,19 @@
package com.ruoyi.test.business;
import com.ruoyi.xq.im.ImOp;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.stereotype.Component;
@SpringBootTest
@Slf4j
public class ImTest {
@Autowired
private ImOp imOp;
@Test
public void refresh(){
imOp.refreshIm();
}
}