石嘉懿的博客

石嘉懿的博客

分享一个在线做流程图,写思维导图的网站

分享一个在线做流程图,写思维导图的网站

网站地址:https://www.draw.io 非常好用,有很多种语言可以选,包括中文 附带一张成品图


小石同学i  1758  2020-01-18 阅读全文

IMG图片找不到使用默认图片的方法

在img标签添加如下属性: <img src="img/xxx.jpg" onerror="this.src='staticfile/img/tihuan


小石同学i  1805  2019-12-31 阅读全文

Java修改jar包里面的配置文件的方法(修改的文件第一行最好敲一个回车)

1、列出jar包的文件清单 jar tf xxx.jar 2、解压出jar包中的指定文件 jar xf xxx.jar conf/xxx.conf 3、编辑配置文件 vim conf/xxx.conf


小石同学i  1901  2019-12-26 阅读全文

MyBatis的 @ResultMap(value="studentMap")简化

使用ResultMap避免因使用@Results产生的过多的冗余代码。 @Select({"select id, name, class_id from my_student where i


小石同学i  1758  2019-12-16 阅读全文

web项目获取properties文件路径

String profilepath =Object.class.getResource("/").getPath()+"access-token.properties&


小石同学i  1869  2019-12-12 阅读全文

Mysql实现简单的存储过程

DELIMITER $$ CREATE PROCEDURE `delete_allcard`() BEGIN DECLARE t_error INTEGER DEFAULT


小石同学i  1806  2019-11-15 阅读全文