随笔分类 -  JAVA基础

摘要:@GetMapping("/downloadExcel")public void downloadExcel(HttpServletResponse response) { response.setContentType("application/force-download");// 设置强制下载 阅读全文
posted @ 2018-11-27 16:48 悄悄地超越 阅读(360) 评论(0) 推荐(0)
摘要:public class Singleton{ String name="In my heart,you are the world"; private static Singleton st=new Singleton();//饿汗模式 private Singleton(){ } public 阅读全文
posted @ 2018-08-05 21:21 悄悄地超越 阅读(312) 评论(0) 推荐(0)