xuzh_blog

博客园 首页 新随笔 联系 订阅 管理

2022年2月18日 #

摘要: 内容摘自http://c.biancheng.net/spring_boot/config-order.html 说明如下: /myBoot:表示 JAR 包所在目录,目录名称自定义; /childDir:表示 JAR 包所在目录下 config 目录的子目录,目录名自定义; JAR:表示 Spri 阅读全文
posted @ 2022-02-18 15:21 xuzh_blog 阅读(259) 评论(0) 推荐(0) 编辑

2022年1月17日 #

摘要: 声明:这段代码也是从网上摘抄的,当时忘记记录地址了,此为转载,勿怪 public static String handleException(Exception e) { StringBuffer message = new StringBuffer(); StackTraceElement [] 阅读全文
posted @ 2022-01-17 13:49 xuzh_blog 阅读(345) 评论(0) 推荐(0) 编辑

摘要: 在tomcat应用conf/server.xml文件的标签中添加下面内容: <Service name="imageService"> <!--分配8089端口 --> <Connector port="8089" protocol="HTTP/1.1" connectionTimeout="200 阅读全文
posted @ 2022-01-17 10:26 xuzh_blog 阅读(60) 评论(0) 推荐(0) 编辑

2022年1月14日 #

摘要: 注意:firewall-cmd命令后面的参数前面是两个短-,这里显示的不是很清晰 查看firewall-cmd运行状态 # firewall-cmd --state 开放8080端口 # firewall-cmd --zone=public --add-port=8080/tcp --permane 阅读全文
posted @ 2022-01-14 14:54 xuzh_blog 阅读(42) 评论(0) 推荐(0) 编辑

2022年1月4日 #

摘要: 第一种,不catch异常 try { try { throw new Exception(); } finally { System.out.println("A"); } } catch (Exception e) { System.out.println("B"); } finally { Sy 阅读全文
posted @ 2022-01-04 16:21 xuzh_blog 阅读(23) 评论(0) 推荐(0) 编辑