Spring boot多线程支持
程序员文章站
2022-05-01 13:00:29
...
项目中经常会遇到一些执行时间较长的任务,这个时候很容易就想到使用多线程来处理。由于这个需求太常用,因此我们的spring大佬就直接帮我们从框架层面实现。
实例代码:web接口异步
MutiThreadApplication
@SpringBootApplication
@EnableAsync //注意加这个注解,启动异步功能
public class MutiThreadApplication {
//配置系统线程池
@Bean
public Executor getExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(10);
executor.setMaxPoolSize(20);
executor.setQueueCapacity(25);
executor.setAwaitTerminationSeconds(20000);
return executor;
}
public static void main(String[] args) {
SpringApplication.run(MutiThreadApplication.class, args);
}
}
TestController
package com.liao.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.liao.service.TestService;
@RestController
public class TestController {
@Autowired
private TestService testService;
@RequestMapping("/test")
public String test() {
System.out.println("main:start");
testService.test();
System.out.println("main:end");
return "end";
}
}
TestService
package com.liao.service;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
@Service
public class TestService {
@Async //此注解标识该方法要异步执行,spirng会启动一个线程异常执行该方法
public void test() {
System.out.println(Thread.currentThread().getName()+":start");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+":end");
}
}
执行结果
web请求立刻返回结果。
系统日志如下:
main:start
main:end
getExecutor-1:start
getExecutor-1:end
上一篇: Spring Boot 的整合
下一篇: 执行spring boot jar包
推荐阅读
-
Spring Data JPA例子代码[基于Spring Boot、Mysql]
-
Spring Boot使用yml格式进行配置的方法
-
spring boot 中设置默认网页的方法
-
构建多模块的Spring Boot项目步骤全纪录
-
Spring Boot 项目创建的详细步骤(图文)
-
Spring Boot实战之静态资源处理
-
Spring Boot 与 Kotlin 使用Redis数据库的配置方法
-
深入浅析Spring-boot-starter常用依赖模块
-
Spring Boot+AngularJS+BootStrap实现进度条示例代码
-
苹果新款MacBook Pro/Air将不再支持通过Boot Camp运行Win7