原创 官網下載Spring的jar包教程

1進入官網 2 3 4 5 6 7 8 9 點贊 收藏 分享 文章舉報 Smile__1 發佈了59 篇原創文章 · 獲贊 248 · 訪問量 12萬+

原创 Linux下解決網卡重啓失敗Restarting network (via systemctl): Job for network.service failed

在安裝redis時不知道怎麼的, linux ping www.baidu.com 出不來了; 重啓網卡報錯 Restarting network (via systemctl): Job for network.service

原创 Oracle遊標

謝謝大神!! 點贊 收藏 分享 文章舉報 Smile__1 發佈了59 篇原創文章 · 獲贊 248 · 訪問量 12萬+ 私信

原创 spring-boot 定時任務實現

@Scheduled 使用 @Scheduled 非常容易,直接創建一個 Spring Boot 項目,並且添加 web 依賴 spring-boot-starter-web,項目創建成功後,添加 @EnableSchedulin

原创 org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException

報錯 org.apache.tomcat.util.http.fileupload.FileUploadBase$FileSizeLimitExceededException: The field multipartFile ex

原创 過濾器filter過濾input裏面輸入的標籤

package edu.sanyang.hr.filter; import java.io.IOException; import javax.servlet.Filter; import javax.servlet.Filte

原创 docker 服務啓動,重啓,關閉命令

啓動docker systemctl start docker 重啓docker systemctl restart docker 關閉docker systemctl stop docker 點贊 收藏

原创 Maven 發佈本地jar到本地倉庫

mvn install:install-file -DgroupId=com.smile -DartifactId=smile -Dversion=1.0 -Dpackaging=jar -Dfile=smile-1.0.jar

原创 git push報錯error: failed to push some refs to 'xxx.com:

GIT上傳項目到碼雲時報錯 $ git push -u origin master To https://gitee.com/lixiaoyang123/sso.git ! [rejected] master ->

原创 無法對sys擁有的對象創建觸發器。

錯誤提示:ORA-O4O89:無法對sys擁有的對象創建觸發器。 首先在tables裏面找到該表,右鍵查看該表的properties,裏面有owner。出現上面這種情況一定是owner爲sys。 下面提供一種解決方法: 爲當前登錄

原创 Shiro 報錯 org.apache.commons.collections.FastHashMap解決辦法

org.apache.commons.collections.FastHashMap是因爲我在使用BeanUtils包時,當時使用的是最新的1.9.3,但是一運行就會出錯,當我把BeanUtilsjar換成1.8.3的版本就好了。