<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_44616792的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_44616792</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_44616792]]></copyright><item><title><![CDATA[node.js、npm、cnpm、Vue脚手架的安装]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/110442379</link><guid>https://blog.csdn.net/weixin_44616792/article/details/110442379</guid><author>weixin_44616792</author><pubDate>Tue, 01 Dec 2020 18:03:53 +0800</pubDate><description><![CDATA[node.js在官网下载会非常慢，基本上下不下来，不过国内有node.js的中文网站可以下载，网站如下：Node.js中文网

node.js的安装就一直下一步即可，注意安装位置。安装完成后在Windows命令窗口输入node -v和npm -v出现版本号就证明安装成功。

接下来就是下载cnpm，目的是为了代替npm达到更快的下载速度。下载国内的cnpm包：npm install -g cnpm --registry=https://registry.npm.taobao.org

最后就是Vue脚手架的]]></description><category></category></item><item><title><![CDATA[类的初始化过程，类的实例化过程]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/108615903</link><guid>https://blog.csdn.net/weixin_44616792/article/details/108615903</guid><author>weixin_44616792</author><pubDate>Wed, 16 Sep 2020 10:33:56 +0800</pubDate><description><![CDATA[一个类进行初始化或实例化时，一定会先对其父类进行初始化或实例化。

类的初始化过程

子类进行初始化：(1)父类进行初始化

              (2)子类的静态成员变量、静态代码块进行初始化

父类进行初始化：(1)父类的静态成员变量、静态代码块进行初始化

注意：静态成员变量、静态代码块有先后顺序，谁在上先初始化谁



类的实例化过程

子类进行实例化：(1)父类进行初始化

              (2)子类进行初始化

 ...]]></description><category></category></item><item><title><![CDATA[Centos7安装docker-compose步骤和问题解决]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/108451040</link><guid>https://blog.csdn.net/weixin_44616792/article/details/108451040</guid><author>weixin_44616792</author><pubDate>Mon, 07 Sep 2020 17:02:02 +0800</pubDate><description><![CDATA[1.确保系统已经安装了docker

2.使用以下命令来下载docker-compose


curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose

此时会遇到第一个问题，curl: (35) Peer reports incompatible or unsupported prot]]></description><category></category></item><item><title><![CDATA[战神笔记本安装win7，解决USB3.0、核显驱动、独显驱动]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/108000950</link><guid>https://blog.csdn.net/weixin_44616792/article/details/108000950</guid><author>weixin_44616792</author><pubDate>Fri, 14 Aug 2020 12:44:41 +0800</pubDate><description><![CDATA[本人的电脑是战神Z7-ct5n1，处理器i5-9300，显卡1660ti。前几天Win10系统崩了，就想装双系统，一个用于开发学习，一个用于游戏娱乐。

我的步骤是先装Win10再装Win7，注意磁盘格式为MBR，BIOS设置为legacy启动方式，这是为了兼顾Win7系统（虽然大神集成的Win7镜像支持UEFI启动，但是我没试过）。具体怎么安装，网上教程一大堆就不在说了。

Win10系统去MSDN下载一个整版的即可，Win7系统我使用的是Y-OS工作室集成的镜像，网上我也用过别的Win7镜像，虽然说是集]]></description><category></category></item><item><title><![CDATA[Win10删除鼠标右键菜单里的播放到设备选项]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105992321</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105992321</guid><author>weixin_44616792</author><pubDate>Fri, 08 May 2020 11:58:18 +0800</pubDate><description><![CDATA[最近在使用Win10遇到一个问题，右键MP3、MP4等文件鼠标滑到播放到设备这个选项时电脑的会卡死，然后会黑屏在恢复正常，这对我这种人来说简直不能忍，难受，在网上找到一些方法，试了一下，发现更改注册表的方式可行，就记录一下。

1.使用win + R 键 打开运行窗口，输入regedit打开注册表

2.定位到HKEY_CLASSES_ROOT\CLSID\{7AD84985-87B4-4a16...]]></description><category></category></item><item><title><![CDATA[Layui---数据表格---自动渲染和重载]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105528405</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105528405</guid><author>weixin_44616792</author><pubDate>Wed, 15 Apr 2020 10:22:22 +0800</pubDate><description><![CDATA[之前已经介绍过Layui数据表格的方法渲染和重载，接下来就是数据表格的自动渲染和重载。

Layui在官网也给出了示例，下面是我自己写的例子：


&lt;div&gt;
   &lt;span style="padding-left: 40px"&gt;
      &lt;input type="text" id="companys" style="width: 200px;height: 2...]]></description><category></category></item><item><title><![CDATA[Layui---数据表格---方法渲染和重载]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105487318</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105487318</guid><author>weixin_44616792</author><pubDate>Tue, 14 Apr 2020 10:03:14 +0800</pubDate><description><![CDATA[最近做了一个小项目，需要使用数据表格，看到Layui中的数据表格十分美观、功能齐全，便在前端使用Layui来展示数据表格，后端使用SpringMVC来进行数据的接收和传递。

一、数据表格的方法渲染

Html代码


&lt;div&gt;
   &lt;input type="text" id="companys" style="width: 200px;height: 29px" class...]]></description><category></category></item><item><title><![CDATA[JavaWeb项目修改网页标签栏的图标]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105089804</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105089804</guid><author>weixin_44616792</author><pubDate>Wed, 25 Mar 2020 10:59:55 +0800</pubDate><description><![CDATA[第一种方式是在每一个页面中都添加配置，可以一用本地的ico图片，也可以引用互联网上的ico。

ico的名称为favicon.ico，href可以填本地引用，也可以一用互联网上的资源。


&lt;link rel="shortcut icon" href="${pageContext.request.contextPath}/image/favicon.ico" type="image/x-ic...]]></description><category></category></item><item><title><![CDATA[使用IDEA开发JavaWeb中的需要注意的地方]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105071797</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105071797</guid><author>weixin_44616792</author><pubDate>Tue, 24 Mar 2020 15:07:02 +0800</pubDate><description><![CDATA[IDEA是很成熟的集成开发工具，十分智能，但是用过程中也有需要注意的地方。

我们知道Web项目最终是需要打包成war包进行发布的，而且Tomcat会将war包的名称加入到访问的URL中，这就给开发过程中不怎么仔细的人造成了困扰。

在Tomcat的配置中有一个Application context，这是使用IDEA运行项目后的访问路径，默认为空，就是我们只需要输入localhost:8080就可...]]></description><category></category></item><item><title><![CDATA[IDEA打包普通的JavaWeb项目]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105070919</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105070919</guid><author>weixin_44616792</author><pubDate>Tue, 24 Mar 2020 14:38:19 +0800</pubDate><description><![CDATA[使用IDEA打包Web项目前我们先来看下项目部署。

在IDEA中部署Tomcat我就不说了，在写完一个Web项目后我们需要在IDEA中运行一下看看效果，这就需要我们将项目部署到Tomcat中。

步骤如下：

打开Tomcat的配置界面，点击Deployment选项。



然后点击“+”号，添加Artifact即可。



然后Build就行了，你运行一遍也行。接下来就可以开始进行打包了。

...]]></description><category></category></item><item><title><![CDATA[SpringMVC之静态资源的过滤配置]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/105070621</link><guid>https://blog.csdn.net/weixin_44616792/article/details/105070621</guid><author>weixin_44616792</author><pubDate>Tue, 24 Mar 2020 14:11:33 +0800</pubDate><description><![CDATA[最近在使用SpringMVC写一个Web项目时，发现一个问题，就是我在jsp中导入JS和CSS后，再运行项目时JS和CSS的效果无法显示出来，后来发现因为在web.xml中配置了SpringMVC的核心过滤器，并且设置为拦截所有内容，这就导致静态资源无法进行加载，我们只需要在SpringMVC的配置文件中配置需要过滤的静态资源即可。


&lt;?conf version="1.0" encodi...]]></description><category></category></item><item><title><![CDATA[Android基础------Broadcast基础]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/104550033</link><guid>https://blog.csdn.net/weixin_44616792/article/details/104550033</guid><author>weixin_44616792</author><pubDate>Fri, 28 Feb 2020 09:29:29 +0800</pubDate><description><![CDATA[广播分为普通广播和有序广播，广播的注册方式分为动态注册和静态注册

动态注册广播是在代码中进行注册，这种注册方式下广播的生命周期随Activity，不一定同时创建，但是基本同时销毁。动态注册广播的步骤为：创建广播接收者，创建过滤器、添加action、注册广播，发送广播

静态注册广播生命周期不受Activity的生命周期影响，这种注册方式是在AndroidManifest.xml文件中进行配...]]></description><category></category></item><item><title><![CDATA[分享几个jar包下载网站和Android相关网站]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/104498404</link><guid>https://blog.csdn.net/weixin_44616792/article/details/104498404</guid><author>weixin_44616792</author><pubDate>Tue, 25 Feb 2020 15:33:54 +0800</pubDate><description><![CDATA[Spring的jar包下载

Spring

Hibernate的jar包下载

Hibernate

Struts的jar包下载

Struts

MyBatis的jar包下载

MyBatis





Android系统源码

https://www.androidos.net.cn/sourcecode
...]]></description><category></category></item><item><title><![CDATA[Android基础------Activity基础]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/104497725</link><guid>https://blog.csdn.net/weixin_44616792/article/details/104497725</guid><author>weixin_44616792</author><pubDate>Tue, 25 Feb 2020 15:22:01 +0800</pubDate><description><![CDATA[应用内Activity的跳转方式

一、通过显式意图跳转，如字面意思一样，跳转的目的地是可以明确看到的

二、通过隐式意图跳转，这种方式的跳转需要我们在AndroidManifest.xml文件中为目的Activity配置Action和Category

模拟账号登录，分别使用俩种方式跳转

这是启动的Activity


package com.example.myapplication.int...]]></description><category></category></item><item><title><![CDATA[Redis存储数据---List类型]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/101025508</link><guid>https://blog.csdn.net/weixin_44616792/article/details/101025508</guid><author>weixin_44616792</author><pubDate>Thu, 19 Sep 2019 16:17:40 +0800</pubDate><description><![CDATA[Redis存储List类型的数据，就是在Map中存储List集合

List类型数据存储

存储数据

   往List的左边(首部)添加元素：lpush key 元素 元素........

   往List的右边边(尾部)添加元素：rpushkey 元素 元素........


127.0.0.1:6379[2]&gt; lpush list:001 1 2 ...]]></description><category></category></item><item><title><![CDATA[Redis存储数据---Hash类型]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/101020238</link><guid>https://blog.csdn.net/weixin_44616792/article/details/101020238</guid><author>weixin_44616792</author><pubDate>Thu, 19 Sep 2019 14:03:38 +0800</pubDate><description><![CDATA[Redis存储Hash类型的数据，就是Map里存储Map

存储的Map的key为字段名，值为字段值

存储Hash类型的数据

存储数据

   hset key 字段名 字段值


127.0.0.1:6379[1]&gt; hset user username wlf
(integer) 1


获取数据

   hget key 字段名


127.0.0....]]></description><category></category></item><item><title><![CDATA[Redis的安装与启动]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/101019520</link><guid>https://blog.csdn.net/weixin_44616792/article/details/101019520</guid><author>weixin_44616792</author><pubDate>Thu, 19 Sep 2019 13:22:00 +0800</pubDate><description><![CDATA[从官网上下载的Redis压缩包解压后需要编译才能算部署Redis成功

所有需要先检查Centos7的C语言环境是否安装

如果没有安装需要安装

rpm -qa | grep gcc   来检查是否安装gcc

yum install gcc-c++   用来安装gcc

tar -zxf​​​​​​​  压缩包名    解压压缩包

解压后进入文件夹

使用 m...]]></description><category></category></item><item><title><![CDATA[Redis存储数据---String类型]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/101019101</link><guid>https://blog.csdn.net/weixin_44616792/article/details/101019101</guid><author>weixin_44616792</author><pubDate>Thu, 19 Sep 2019 13:10:33 +0800</pubDate><description><![CDATA[存储String类型的数据

存储数据

   使用set key value 来存储数据


127.0.0.1:6379&gt; set String str1
OK


获取数据

   使用get key 来获取数据


127.0.0.1:6379&gt; get String
"str1"


批量插入数据和获取数据

   mset key1 va...]]></description><category></category></item><item><title><![CDATA[存储过程中的三个字段，in、out、inout]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/100986905</link><guid>https://blog.csdn.net/weixin_44616792/article/details/100986905</guid><author>weixin_44616792</author><pubDate>Wed, 18 Sep 2019 16:16:13 +0800</pubDate><description><![CDATA[in字段

in字段，就是输入，往存储过程里输入的值


CREATE procedure pdd_sum(in a int , in b int)
begin 
declare c int;
if a is null
then set a=0;
end if;
if b is null
then set b=0;
end if;
set c=a+b;
select c;
end

call pd...]]></description><category></category></item><item><title><![CDATA[数据库的存储过程]]></title><link>https://blog.csdn.net/weixin_44616792/article/details/100985553</link><guid>https://blog.csdn.net/weixin_44616792/article/details/100985553</guid><author>weixin_44616792</author><pubDate>Wed, 18 Sep 2019 15:59:15 +0800</pubDate><description><![CDATA[什么是存储过程？

为了方便使用而保存的一条或多条MySQL语句的集合

为什么要使用存储过程？

1.简化操作，将复杂的处理过程封装到一个单元内

2.保证了数据的完成性，自己或他人多次调用可以保证结果一致，不会出现错误

3.方便更改维护

简单创建一个存储过程

先使用  CREATE procedure 存储过程名称(参数列表)

begin end 里面就是SQL语句和业务逻...]]></description><category></category></item></channel></rss>