宝塔默认访问地址
ip+端口+随机字符串 (cat /www/server/panel/data/admin_path.pl)
获取手机软件报错:Error Error obtaining Ul hierarq Reason:Error while obtaining Ul hierarchy XML file:com,android,ddmlib,SyncException: Remote object doesn't exist! Details >> 解决:先执…
本来时在控制层对A的service进行分页,但是A的service中调用了多个Mapper,导致调用的所有Mapper都自动添加了limit 使用PageHelper提供了clearPage()方法
临时(重启会失效) /proc/sys/net/ipv4/icmp_echo_ignore_all 永久(设置配置文件) 定位系统配置文件 /etc/sysctl.conf 设置参数信息 net.ipv4.icmp_echo_ignore_all = 1 刷新配置文件 sudo sysctl -p 禁…
AOP 使用@AfterReturning 定义多个切入点时报错error at ::0 inconsistent binding 多个切入点要用()括起来@AfterReturning(value = "(execution(* com.TestService.*(..)) || execution(* TestaService.CircleSe…
在pom中设置lombok和mapstruct的顺序,弃用@Autowired
unable to scan documentation context default 实体类的成员变量不小心定义了public,改回private即可解决
MySQL官方给出的解决方案(地址) Imho utf8 charset only partially implements proper UTF-8 encoding, and it can only store UTF-8-encoded symbols that consist of one to three bytes; encoded symbols that…
索引 SELECT TABLE_NAME, INDEX_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.STATISTICS WHERE TABLE_SCHEMA = 'your_database_name' and TABLE_NAME like '%table_name%'; 索引失效的场景 假设场景 CREAT…
显示隐藏文件 Command”+“Shift”+“.(句点) 旧版本 ~/.bash_profile 新版本 .zprofile .zprofile 文件只适用于 Zsh shell。如果您使用的是其他 shell(如 Bash) 环境变量设置在,设置完重启终端 /Users/jia/.zprof…
Arrays.asList()的集合之后不能修改该集合,会有异常 原因:aslist之后的集合源码中用的还是数组 ArrayList.subList返回的是原集合的子集合 非结构性修改会影响彼此,结构性修改原集合时,会报ConcurrentModificati…