Java 给某段代码加超时时间

问题原因:使用HuTool 的DbTtil 不能设置数据库连接超时时间,可能数据库挂了,会导致连接一直卡在那,也没有异常抛出,导致线程一直占着。所以给该段代码加超时时间处理。

    public static void main(String[] args) {
        ExecutorService executor = Executors.newCachedThreadPool();

        // 使用Callable接口作为构造参数
        FutureTask<String> future = new FutureTask<>(() -> {
            System.out.println("运行中::" + LocalDateTime.now());
            // 真正的任务代码在这里执行,返回值为你需要的类型
            Thread.sleep(9000);

            return "result";
        });

        executor.execute(future);
        try {
            // 取得结果,同时设置超时执行时间默认为10秒。同样可以用future.get(),不设置执行超时时间取得结果
            System.out.println("结果前::" + LocalDateTime.now());
            String res = future.get(10000, TimeUnit.MILLISECONDS);
            System.out.println(res + "结果后:" + LocalDateTime.now());
        } catch (Exception e) {
            System.out.println("error:" + LocalDateTime.now());
            future.cancel(true);
            e.printStackTrace();
        } finally {
            executor.shutdown();
        }

    }

你可能感兴趣的:(开发过程,java)