自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 619

原创 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 79

转载 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 255

原创 单例模式

//单例模式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 143

原创 冒泡排序

冒泡排序//冒泡排序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 138

原创 context:component-scan base-package 不能扫描其他模块下的包

问题:<context:component-scan base-package ="" / >不能扫描其他模块的包解决:添加其他模块依赖具体方案:IDEA模块间添加依赖

2020-04-28 17:59:04 1663

原创 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 4385

原创 使用 @Autowired 去注解 Mapper 报错

https://blog.csdn.net/qq_37164847/article/details/83344574

2020-02-27 10:59:35 271

原创 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 489

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除