parent
90fd86d8aa
commit
cd22704df8
@ -0,0 +1,36 @@
|
||||
package net.educoder.model.param;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author: youys
|
||||
* @Date: 2022/8/19
|
||||
* @Description:
|
||||
*/
|
||||
@Data
|
||||
public class ResetCloudHostParam {
|
||||
|
||||
/**
|
||||
* 云主机id
|
||||
*/
|
||||
private String serverId;
|
||||
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
private String username;
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
private String password;
|
||||
/**
|
||||
* 端口
|
||||
*/
|
||||
private int port;
|
||||
|
||||
/**
|
||||
* 浮动id
|
||||
*/
|
||||
private String floatingIp;
|
||||
|
||||
}
|
@ -0,0 +1,38 @@
|
||||
package net.educoder;
|
||||
|
||||
import com.google.common.cache.Cache;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
|
||||
/**
|
||||
* @Author: youys
|
||||
* @Date: 2022/8/19
|
||||
* @Description:
|
||||
*/
|
||||
|
||||
@SpringBootTest
|
||||
public class CacheTest {
|
||||
|
||||
@Autowired
|
||||
private Cache cache;
|
||||
|
||||
|
||||
@Test
|
||||
public void testCacheExpire() throws Exception {
|
||||
|
||||
|
||||
cache.put("key","value");
|
||||
|
||||
int i=15;
|
||||
while(i-- > 0){
|
||||
System.out.println(cache.getIfPresent("key"));
|
||||
Thread.sleep(1000);
|
||||
}
|
||||
|
||||
System.out.println("finish");
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue