'fixedRate'에 해당되는 글 1건

  1. 2020.05.06 [spring] https tls 설정 후에, connection lost issue 해결방법
server2020. 5. 6. 14:27

[spring] https tls 설정 후에, connection lost issue 해결방법

 

https 설정 후에 , db sleep 되는 경우가 생긴다..

 

그러면 서버를 계속 커넥션 맺어줘야 한다..

 

그래서 어떻게 할 수 있을까??

 

@EnableScheduling

class

{

@Scheduled(fixedRate = 60000)

public void method()

{

 // 서버 접속 

}

}

 

1분마다 한번씩 접속 해준다..

 

[참조] https://stackoverflow.com/questions/47301079/how-to-call-a-method-automatically-in-every-seconds-using-spring-boot

 

how to call a method automatically in every seconds using spring boot?

In Spring-boot project, is there a method that want to make it called every seconds automatically? And make an rest-api to set calling term in same project?

stackoverflow.com

 

Posted by thdeodls85