摘要:
如果你的网站被谷歌标记为不安全,则用户访问时会出现以下情况,主要出现在Chrome浏览器和安卓webview,提示你访问的网站包含有害程序 1、先访问 https://search.google.com/search-console/welcome 查询网址存在什么安全问题 2、执行上一个步骤时,需 阅读全文
摘要:
tkmybatis VS mybatisplus . 是mybatis的两个扩展插件,可以减少sql语句编写 https://blog.csdn.net/u013076044/article/details/95376200 tkmybatis . https://www.bilibili.com/ 阅读全文
摘要:
jdbc预编译可以有两种方式: 方式一、jdbc自己实现的预编译,就是做一下特殊字符处理来防SQL注入,看PreparedStatement源码就可以了。 方式二、利用MySQL的预编译,。 阅读全文
摘要:
分析方法: 在 GenericTokenParser这个类的parse方法的这一行下个断点调试一下就明白了 阅读全文
摘要:
@Id// @GeneratedValue(strategy = GenerationType.AUTO) // 自增// @GeneratedValue(strategy = GenerationType.IDENTITY) // 自增// @GeneratedValue(strategy = G 阅读全文
摘要:
import java.net.InetAddress;import java.net.NetworkInterface;import java.util.Enumeration;import java.util.HashMap;public class MacUtils { private sta 阅读全文
摘要:
1、表格要设置成可编辑。2、对列进行如下设置。列定义: @FXMLprivate TableColumn<Hole, Boolean> id_colCheck; 列设置id_colCheck.setCellValueFactory(new Callback<TableColumn.CellDataF 阅读全文
摘要:
defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool FALSE defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls 阅读全文
摘要:
下载源代码,导入idea 运行MavenCli ,设置vm参数 -Dclassworlds.conf=/Users/fsq/Downloads/apache-maven-3.6.2.0/bin/m2.conf -Dmaven.home=/Users/fsq/Downloads/apache-mave 阅读全文
摘要:
String url = "http://www.xxx.com/api/test";OkHttpClient httpClient = new OkHttpClient();MediaType mediaType = MediaType.parse("application/json;charse 阅读全文