springboot的性能优化

springboot的性能优化
对于springboot的性能优化可以从注解@SpringBootApplication上优化,servlet容器上优化,jvm上优化
1.可以将@springbootApplication改为@EnableAutoConfiguration+ComponentScan(basePackages =“com.aiit.controller”)可以提高性能
2.servlet服务器Tomcat改为Undertow,默认情况下Springboot使用Tomcat来作为Servlet容器,我们可以将web服务器切换到Undertow来提高性能。根据测试吞吐量
3.jvm调优:将堆的内存初始值等于堆的内存最大值

你可能感兴趣的:(springboot的性能优化)