- 博客(9)
- 收藏
- 关注
原创 Linux关闭防火墙命令
一、下面是red hat/CentOs7关闭防火墙的命令!1:查看防火状态systemctl status firewalldservice iptables status2:暂时关闭防火墙systemctl stop firewalldservice iptables stop3:永久关闭防火墙systemctl disable firewalldchkconfig iptables off4:重启防火墙systemctl enable firewalldservice ipt
2020-12-09 11:51:35 658
原创 CentOS7安装MySQL数据库
https://blog.csdn.net/typa01_kk/article/details/49058593?utm_source=blogxgwz5&utm_medium=distribute.pc_relevant.none-task-blog-title-6&spm=1001.2101.3001.4242
2020-12-09 11:42:39 90
转载 Mysql中批量删除相同表前缀的sql语句
先执行删除所有PPR_前缀的表SELECT CONCAT( 'drop table ',table_name,'; ') FROM information_schema.tables where information_schema.tables.TABLE_NAME LIKE 'ppr_%';删除所有PPR_前缀的表 并且 不删除PPR_UC前缀的表SELECT CONCAT( 'drop table ',table_name,'; ') FROM info...
2020-11-22 20:17:26 270
原创 单例模式
//单例模式public class TestSingle { public static void main(String[] args) { //测试饿汉式 Single s1 = Single.getSingle(); Single s2 = Single.getSingle(); if (s1==s2){ System.out.println("s1=s2"); } }}//饿汉式
2020-05-15 10:36:00 153
原创 冒泡排序
冒泡排序//冒泡排序public class BubbleSort { public static void main(String[] args) { //定义一个需要排序的数组 int[] arr = {3,6,1,8,2}; //定义一个临时变量 int temp; //冒泡排序 for (int i = 0; i < arr.length-1; i++) {//冒泡趟数
2020-05-15 10:33:11 146
原创 context:component-scan base-package 不能扫描其他模块下的包
问题:<context:component-scan base-package ="" / >不能扫描其他模块的包解决:添加其他模块依赖具体方案:IDEA模块间添加依赖
2020-04-28 17:59:04 1685
原创 nginx: [error] OpenEvent("Global\ngx_quit_17204") failed (2:The system cannot find the file specifie
https://www.cnblogs.com/tongxuping/p/7304976.html
2020-03-04 12:02:04 4401
原创 使用 @Autowired 去注解 Mapper 报错
https://blog.csdn.net/qq_37164847/article/details/83344574
2020-02-27 10:59:35 283
原创 JavaScript--9*9乘法表
9*9乘法表代码实现效果:代码<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>9*9乘法表</title> <style> td{ border: 1p...
2019-04-10 01:26:11 504
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人