/* Copyright (C) 2019-2023 Hangzhou HSH Co. Ltd. * All right reserved.*/ package pyrmont.ex02; import java.io.IOException; /** * @author simon * @date 2023-09-27 17:11 * @desc */ public class StaticResourceProcessor { public void process(Request request, Response response) { try { response.sendStaticResource(); } catch (IOException e) { e.printStackTrace(); } } }