In my project i use spring-boot with jsf. When i start my web application from IDE(eclipse) or using 'mvn spring-boot:run' command there is no problem response time is very good. But when i package my app with ' mvn clean install ' and than run 'java -jar myapp.war' sometimes it takes too long time to process simple jobs. For example opening a dialog page with some data from backing bean, normally takes 200 msec but sometimes it takes 7 secs. What can it be the cause of this problem ?
Not: I face this problem only running it with packaged fat .war file.