<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[齐格的技术博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/loveaborn</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; loveaborn]]></copyright><item><title><![CDATA[Uncaught TypeError: normalizeKey is not a function]]></title><link>https://blog.csdn.net/loveaborn/article/details/128346484</link><guid>https://blog.csdn.net/loveaborn/article/details/128346484</guid><author>loveaborn</author><pubDate>Fri, 16 Dec 2022 18:32:33 +0800</pubDate><description><![CDATA[最后发现原因是在引入Element-Plus的顺序在vue之前导致，重新调整下他们的顺序后，问题解决。发现是init_runtime_core_esm_bundler没有执行，导致找不到这个函数。]]></description><category></category></item><item><title><![CDATA[通过SPI方式定制druid filter]]></title><link>https://blog.csdn.net/loveaborn/article/details/126108123</link><guid>https://blog.csdn.net/loveaborn/article/details/126108123</guid><author>loveaborn</author><pubDate>Mon, 01 Aug 2022 19:30:03 +0800</pubDate><description><![CDATA[文件内容为filter的全路径。]]></description><category></category></item><item><title><![CDATA[Nuxt 3.0使用color-mode时dark/light切换不生效问题]]></title><link>https://blog.csdn.net/loveaborn/article/details/125011604</link><guid>https://blog.csdn.net/loveaborn/article/details/125011604</guid><author>loveaborn</author><pubDate>Fri, 27 May 2022 21:58:31 +0800</pubDate><description><![CDATA[背景
在Nuxt 3.0中引入了color-mode用来检测当前浏览器是 dark 模式，还是 light 模式。代码如下：

&lt;template&gt;
    &lt;NavBar /&gt;
    &lt;main class="container"&gt;
        &lt;md-editor v-model="text" :theme="theme" :toolbarsExclude="toolbarsExclude"
            style="background-co]]></description><category></category></item><item><title><![CDATA[ERROR 1118 (42000): Row size too large (＞ 8126). Changing some columns to TEXT or BLOB or using ...]]></title><link>https://blog.csdn.net/loveaborn/article/details/124622691</link><guid>https://blog.csdn.net/loveaborn/article/details/124622691</guid><author>loveaborn</author><pubDate>Sat, 07 May 2022 06:06:38 +0800</pubDate><description><![CDATA[在创建数据库表时报错
之前已经在数据库里创建了多张表，但在创建其中一张数据库表时报如下错：
ERROR 1118 (42000): Row size too large (&gt; 8126). Changing some columns to TEXT or BLOB or using ROW_FORMAT=DYNAMIC or ROW_FORMAT=COMPRESSED may help. In current row format, BLOB prefix of 768 bytes is stored]]></description><category></category></item><item><title><![CDATA[mysql报错：ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘]]></title><link>https://blog.csdn.net/loveaborn/article/details/124620130</link><guid>https://blog.csdn.net/loveaborn/article/details/124620130</guid><author>loveaborn</author><pubDate>Fri, 06 May 2022 22:18:30 +0800</pubDate><description><![CDATA[在Ubuntu安装好MySQL后报错
安装命令（Ubuntu 20.04）：
sudo apt install mysql-server
sudo systemctl start mysql.service
sudo mysql_secure_installation

然后查看版本会报错
➜  ~ mysql -v
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
➜  ~ mysql --]]></description><category></category></item><item><title><![CDATA[SpringBoot Redis使用scan扫描keys出前诡异的乱码前缀]]></title><link>https://blog.csdn.net/loveaborn/article/details/124336036</link><guid>https://blog.csdn.net/loveaborn/article/details/124336036</guid><author>loveaborn</author><pubDate>Fri, 22 Apr 2022 06:04:08 +0800</pubDate><description><![CDATA[在使用SpringBoot Redis里的scan方法扫描匹配的keys时出现了诡异的乱码前缀，类似如下截图：

字符串如下：
��t�online-token-eyJhbGciOiJIUzUxMiJ9.eyJqdGkiOiIwOWM1MDVkM2ZlMjE0OGVmYTk5MmQwNjhlOGVkYzNmMCIsInVzZXIiOiJhZG1pbiIsInN1YiI6ImFkbWluIn0.fB8T1s1tK6Z4SM9nGu1Dot9EXmdOoxcDaBIhcMur00RQy5PZk0fADRSf0]]></description><category></category></item><item><title><![CDATA[Mybatis与JPA冲突报BindingException: Invalid bound statement (not found)]]></title><link>https://blog.csdn.net/loveaborn/article/details/124287994</link><guid>https://blog.csdn.net/loveaborn/article/details/124287994</guid><author>loveaborn</author><pubDate>Wed, 20 Apr 2022 06:05:05 +0800</pubDate><description><![CDATA[在同时使用Mybatis和JPA时，项目运行过程中会报如下问题：
InternalAuthenticationServiceException: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.sancaiwulian.smes.system.service.mapper.UserMapper.toDto   at org.springframework.security.authent]]></description><category></category></item><item><title><![CDATA[ubuntu 14.04安装oracle java]]></title><link>https://blog.csdn.net/loveaborn/article/details/48829575</link><guid>https://blog.csdn.net/loveaborn/article/details/48829575</guid><author>loveaborn</author><pubDate>Wed, 30 Sep 2015 16:02:47 +0800</pubDate><description><![CDATA[ubuntu 14.04安装oracle java
加入软件源
sudo apt-add-repository ppa:webupd8team/java
sudo apt-get update
安装Java 7
sudo apt-get install oracle-java7-installer
安装Java 8
sudo apt-get install oracle-java8-i]]></description><category></category></item><item><title><![CDATA[js的new Date()构造函数]]></title><link>https://blog.csdn.net/loveaborn/article/details/48793519</link><guid>https://blog.csdn.net/loveaborn/article/details/48793519</guid><author>loveaborn</author><pubDate>Mon, 28 Sep 2015 23:59:56 +0800</pubDate><description><![CDATA[想要表示2016年12月31日12时59分59秒，是这样写：
var exampleDate = new Date(2016, 11, 31, 12, 59, 59)
因为：月份是从0开始的！！！]]></description><category></category></item><item><title><![CDATA[emacs使用multi-term作为terminal]]></title><link>https://blog.csdn.net/loveaborn/article/details/46854179</link><guid>https://blog.csdn.net/loveaborn/article/details/46854179</guid><author>loveaborn</author><pubDate>Sun, 12 Jul 2015 22:23:32 +0800</pubDate><description><![CDATA[emacs 使用multi-termemacs里的multi-term相当于mac下的iterm，是emacs下非常好用的terminal。载入multi-term.el文件emacs使用multi-term作为terminal，首先要将multi-term.el文件放到你emacs的load-path里。配置;; ------------------------------------------]]></description><category></category></item><item><title><![CDATA[emacs 搭建racket开发环境]]></title><link>https://blog.csdn.net/loveaborn/article/details/46763163</link><guid>https://blog.csdn.net/loveaborn/article/details/46763163</guid><author>loveaborn</author><pubDate>Sun, 05 Jul 2015 14:36:39 +0800</pubDate><description><![CDATA[emacs 搭建racket开发环境emacs下搭建开发racket的环境，笔者之前用过以下两种模式：geiser和racket-mode。相对而言，后一种方式要显得简单，本文主要介绍后一种方式环境的搭建(注：笔者是mac系统，其他系统类似)：下载和安装racket首先得下载racket的编译和运行环境，下载地址为http://download.racket-lang.org/。笔者是mac系统，下]]></description><category></category></item><item><title><![CDATA[ehcache调用说明]]></title><link>https://blog.csdn.net/loveaborn/article/details/46486359</link><guid>https://blog.csdn.net/loveaborn/article/details/46486359</guid><author>loveaborn</author><pubDate>Sat, 13 Jun 2015 23:30:48 +0800</pubDate><description><![CDATA[ehcache调用ehcache是非常优秀的、轻量级的、本地缓存方案，它可以解决大并发情况下静态资源的快速保存与访问。引入ehcache jar包这里引入最新版本的ehcache jar包：<dependency>
    <groupId>net.sf.ehcache</groupId>
    <artifactId>ehcache</artifactId>
    <version>2.10.]]></description><category></category></item><item><title><![CDATA[Spring 4 MVC的post提交form时中文乱码]]></title><link>https://blog.csdn.net/loveaborn/article/details/44465219</link><guid>https://blog.csdn.net/loveaborn/article/details/44465219</guid><author>loveaborn</author><pubDate>Thu, 19 Mar 2015 21:30:58 +0800</pubDate><description><![CDATA[如果你发现Spring 4 MVC的Post请请求乱码，请添加accept-charset的标签为utf-8就能解决，如下：
            <form name="user" action="add.html" method="post"
                    accept-charset="utf-8">
                Firstname:  
 ]]></description><category></category></item><item><title><![CDATA[Tomcat 设置URI默认字符集为UTF-8]]></title><link>https://blog.csdn.net/loveaborn/article/details/44450873</link><guid>https://blog.csdn.net/loveaborn/article/details/44450873</guid><author>loveaborn</author><pubDate>Thu, 19 Mar 2015 09:15:22 +0800</pubDate><description><![CDATA[新配置一个Spring的MVC项目，发现对Get请求的中文参数出现了乱码：


查看了SpingMVC中关于编码的配置(在web.xml中），如下
    
        encodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding]]></description><category></category></item><item><title><![CDATA[Spring MVC获得HttpServletRequest]]></title><link>https://blog.csdn.net/loveaborn/article/details/44342669</link><guid>https://blog.csdn.net/loveaborn/article/details/44342669</guid><author>loveaborn</author><pubDate>Tue, 17 Mar 2015 15:40:08 +0800</pubDate><description><![CDATA[下面代码是获得Spring MVC中的HttpServletRequest
 ServletRequestAttributes attr = (ServletRequestAttributes)
                RequestContextHolder.currentRequestAttributes();
        HttpServletRequest request =]]></description><category></category></item><item><title><![CDATA[Tomcat 7 如何手工部署war包对应的Java项目]]></title><link>https://blog.csdn.net/loveaborn/article/details/44303713</link><guid>https://blog.csdn.net/loveaborn/article/details/44303713</guid><author>loveaborn</author><pubDate>Mon, 16 Mar 2015 13:05:19 +0800</pubDate><description><![CDATA[平常的开发我们都是通过IDE进行项目的部署，但有时候我们不得不进行手工部署（例如在Server上）。
手工部署分为以下几步：
第1步： 用maven打war包 (假如得到的war包名为: appkit-web.war)
mvn package
如果想打包过程中跳过测试，采用以下命令：
mvn package -Dmaven.test.skip=ture

第2步: 把war包拷贝到t]]></description><category></category></item><item><title><![CDATA[mediawiki上传文件出现Fatal exception of type MWException]]></title><link>https://blog.csdn.net/loveaborn/article/details/44080043</link><guid>https://blog.csdn.net/loveaborn/article/details/44080043</guid><author>loveaborn</author><pubDate>Thu, 05 Mar 2015 11:20:07 +0800</pubDate><description><![CDATA[mediawiki上传图片文件的时候出现如下错误：
Fatal exception of type MWException
查了下，是因为图片目录的权限不够造成的，在服务器的根目录下有个image目录把它的权限改成777
chmod 777 images/
上传就没问题了。
但上传图片后又出现了如下错误：
生成缩略图出错：/bin/bash: /usr/bin/convert: No]]></description><category></category></item><item><title><![CDATA[Joomla使用ajax.googleapis.com导致网页加载非常慢的解决方法]]></title><link>https://blog.csdn.net/loveaborn/article/details/43834433</link><guid>https://blog.csdn.net/loveaborn/article/details/43834433</guid><author>loveaborn</author><pubDate>Sun, 15 Feb 2015 13:28:39 +0800</pubDate><description><![CDATA[有一天，我的一个朋友跟我说，他网站的某个页面加载非常慢，让我帮忙解决。
我用Chrome自带的工具(右键 -> Inspect elecment)查看，我发现了问题所在。那个页面加载了Google的一段js
http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js


在天朝，Google被墙了，你懂的，政府在为我们安(zhi]]></description><category></category></item><item><title><![CDATA[[备忘] OSX 10.7.5安装MediaWiki中的php53-apc]]></title><link>https://blog.csdn.net/loveaborn/article/details/43705449</link><guid>https://blog.csdn.net/loveaborn/article/details/43705449</guid><author>loveaborn</author><pubDate>Tue, 10 Feb 2015 17:26:27 +0800</pubDate><description><![CDATA[在安装MediaWiki的过程中遇到了下面的apc未安装的问题。


采用brew方法进行安装如下：命令为  brew install php53-apc  
apache2  brew install php53-apc                     
==> Installing php53-apc from homebrew/homebrew-php
==> Downloa]]></description><category></category></item><item><title><![CDATA[解决：OSX 10.7.5的Git的问题Illegal instruction: 4]]></title><link>https://blog.csdn.net/loveaborn/article/details/43670045</link><guid>https://blog.csdn.net/loveaborn/article/details/43670045</guid><author>loveaborn</author><pubDate>Mon, 09 Feb 2015 13:54:16 +0800</pubDate><description><![CDATA[dr:~ testlab$ git
Illegal instruction: 4没错，当在OSX 10.7.5里安装了]]></description><category></category></item></channel></rss>