csjoz11

导航

2021年8月29日 #

点对点

摘要: <?php session_start(); function sub($str){ $b = $a=$str; $a=strpos(strrev($a),'/'); $c=substr($b,0,-$a); return $c; } if(empty($_SESSION['patten'])) $ 阅读全文

posted @ 2021-08-29 02:46 csjoz11 阅读(45) 评论(0) 推荐(0) 编辑

IDEA快捷键

摘要: 阅读全文

posted @ 2021-08-29 02:45 csjoz11 阅读(12) 评论(0) 推荐(0) 编辑

httpd-vhosts.conf

摘要: <VirtualHost *:80> DocumentRoot "D:\admin\gmshop_backend" ServerName www.web1.com ServerAlias www.web1.com <Directory "D:\admin\gmshop_backend"> Optio 阅读全文

posted @ 2021-08-29 02:41 csjoz11 阅读(42) 评论(0) 推荐(0) 编辑

生日

摘要: <?php // $r=calc("2013-02-04"); echo calc("2013-02-04")."<br/>";echo calc("2015-11-07")."<br/>";echo calc("2017-10-19")."<br/>"; function calc($str){ 阅读全文

posted @ 2021-08-29 02:38 csjoz11 阅读(11) 评论(0) 推荐(0) 编辑

查出所有表名

摘要: $res = pdo_fetchall('SHOW TABLES'); $aa=''; foreach($res as $k=>$v){ $aa.=$v['Tables_in_mcity'].','; } echo "<pre>"; var_export($aa); die; ?> $res = p 阅读全文

posted @ 2021-08-29 02:37 csjoz11 阅读(12) 评论(0) 推荐(0) 编辑

开机启动文件夹

摘要: C:\Users\KM02\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp 阅读全文

posted @ 2021-08-29 02:06 csjoz11 阅读(46) 评论(0) 推荐(0) 编辑

SpringBoot占用端口

摘要: 启动SpringBoot 项目服务报错The port may already be in use or the connector may be misconfigured 技术标签: springBoot 在SpringBoot体系中,经常会遇到因为一些情况需要使用直接关闭某个服务的情况,然后你 阅读全文

posted @ 2021-08-29 02:04 csjoz11 阅读(291) 评论(0) 推荐(0) 编辑

停止8080端口

摘要: netstat -ano netstat -ntlp taskkill /F /PID 8996 阅读全文

posted @ 2021-08-29 02:03 csjoz11 阅读(25) 评论(0) 推荐(0) 编辑

java JDK下载与安装教程

摘要: JDK下载与安装教程 原创 2017-06-18 22:53:16 326点赞 学习JAVA,必须得安装一下JDK(java development kit java开发工具包),配置一下环境就可以学习JAVA了,下面是下载和安装JDK的教程:1.JDK下载地址:http://www.oracle. 阅读全文

posted @ 2021-08-29 02:03 csjoz11 阅读(478) 评论(0) 推荐(0) 编辑

JRebel热部署

摘要: https://www.xttblog.com/?p=5144 https://www.guidgen.com/ 本教程,本方法仅限于个人学习编程使用,不得商业使用。 推荐大家购买正版产品! 一般一个产品的生命周期就像一个抛物线。JRebel 亦是如此。 做 Java 开发,离不开热发布、热部署。J 阅读全文

posted @ 2021-08-29 02:02 csjoz11 阅读(166) 评论(0) 推荐(0) 编辑

取消ctrl+alt+箭头 旋转

摘要: 控制面板\外观和个性化\显示\屏幕分辨率 阅读全文

posted @ 2021-08-29 02:01 csjoz11 阅读(81) 评论(0) 推荐(0) 编辑

空指针调试

摘要: Ctrl+shift+f8 阅读全文

posted @ 2021-08-29 02:00 csjoz11 阅读(23) 评论(0) 推荐(0) 编辑

xdebug 断点调试,时间过长会出现超时如何解决

摘要: xdebug 断点调试,时间过长会出现超时如何解决 MaxKeepAliveRequests 100 Timeout 10000 IPCConnectTimeout 3000 IPCCommTimeout 3000 阅读全文

posted @ 2021-08-29 01:57 csjoz11 阅读(380) 评论(0) 推荐(0) 编辑

Free Mybatis plugin

摘要: https://blog.csdn.net/sm16111/article/details/105937873 Free Mybatis plugin 老规矩先吹一波......这个idea里面的插件真的十分nice,上个图让你们知道他的优秀。直接在idea插件搜索就可以安装啦。 1、跳转功能: 这 阅读全文

posted @ 2021-08-29 01:49 csjoz11 阅读(95) 评论(0) 推荐(0) 编辑

vue 无法加载文件 CProgram Filesnodejsnpm.ps1,因为在此系统上禁止运行脚本

摘要: https://blog.csdn.net/liyiliang123/article/details/108676695 今天使用cnpm安装插件时出现了以下错误: 原因:现用执行策略是 Restricted(默认设置) 解决办法: 1.win+X键,使用管理员身份运行power shell 2.输 阅读全文

posted @ 2021-08-29 01:48 csjoz11 阅读(78) 评论(0) 推荐(0) 编辑

mysql Specified key was too long; max key length is 767 bytes

摘要: 今天生产上遇到上述的bug: 系统变量innodb_large_prefix开启了,则对于使用DYNAMIC或COMPRESSED行格式的InnoDB表,索引键前缀限制为3072字节。如果禁用innodb_large_prefix,不管是什么表,索引键前缀限制为767字节。 上述的bug很明显是索引 阅读全文

posted @ 2021-08-29 01:47 csjoz11 阅读(283) 评论(0) 推荐(0) 编辑

apachi 设置index.html index.htm index.php

摘要: D:\AppServ\Apache24\conf\extra\httpd-vhosts.conf DocumentRoot "D:\admin\z1" ServerName www.z1.com ServerAlias www.z1.com <directory "d:\admin\z1"=""> 阅读全文

posted @ 2021-08-29 01:47 csjoz11 阅读(76) 评论(0) 推荐(0) 编辑

JAVA面经

摘要: 1,之前公司做过什么项目,用过什么技术2,REDIS做秒杀,怎么判断最后一件商品,如果有两人同时购买如何处理3,之前如的项目中,有哪些是你觉得比较难解决的问题,都 是怎么处理的4,SPRINGBOOT启动过程经历了什么,先启动什么再启动什么有以下特点: 创建独立的Spring应用程序嵌入的Tomca 阅读全文

posted @ 2021-08-29 01:43 csjoz11 阅读(103) 评论(0) 推荐(0) 编辑