@Scheduled(fixedDelay=10000)
@PostConstruct
public void someMethod(){
//my refresh cache code here
}
If I use both @PostConstruct and @Scheduled on a bean method what will be the consequences. Will this method will be executed twice? one after the other of may be at same time ?