原创 spring mvc /spring boot整合mybatis ssm搭建

spring boot整合mybatis:https://blog.csdn.net/ljheee/article/details/76599363 https://blog.csdn.net/ljheee/article/details

原创 List列表String到列表Intger

List<Integer> codesInteger = codes.stream().map(Integer::parseInt).collect(Collectors.toList()); 轉換list列表String

原创 IDEA基礎搭建轉載鏈接

IntelliJ IDEA 使用教程(2019圖文版) -- 從入門到上癮 IDEA創建Maven工程 IntelliJ IDEA常用配置 解決IntelliJ IDEA控制檯輸出中文亂碼問題 點贊 收藏 分享

原创 正則表達式匹配各種特殊字符

這篇文章主要介紹了正則表達式匹配各種特殊字符的相關知識,非常不錯,具有一定的參考借鑑價值,需要的朋友可以參考下 寫個可以匹配一下各種特殊字符的正則表達式 ((?=[\x21-\x7e]+)[^A-Za-z0-

原创 asp.net core項目學習

學習大神地址:https://blog.csdn.net/liwan09/article/details/82254090 https://blog.csdn.net/henjuewang/article/details/84190372

原创 jquery遍歷數組的方式

1,for循環: var arr = new Array(13.5,3,4,5,6); for(var i=0;i<arr.length;i++){ arr[i] = arr[i]/2.0; } 2,for,in循環:   var

原创 java 枚舉的用法

https://blog.csdn.net/cauchy6317/article/details/82313088(簡歷介紹) https://blog.csdn.net/qq_27093465/article/details/52180

原创 asp.net ashx 跨域問題

ajax請求jsonp出錯問題參考:https://blog.csdn.net/qq_15260769/article/details/80701647 sonp跨域+ashx(示例):https://www.cnblogs.com/xi

原创 NoSQL架構實踐

NoSQL架構實踐:https://blog.csdn.net/zhoudaxia/article/details/8942131 https://www.cnblogs.com/sunli/ http://www.cnblogs.com

原创 js下Ajax讀取txt文件內容與Java 寫入讀取txt

js ajax讀取 寫入  <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" conte

原创 使用jquery刷新當前頁面

如何使用jquery刷新當前頁面 下面介紹全頁面刷新方法:有時候可能會用到 window.location.reload()刷新當前頁面. parent.location.reload()刷新父親對象(用於框架) opener.locat

原创 spring boot整合mybatis

spring boot整合mybatis:https://blog.csdn.net/ljheee/article/details/76599363 https://blog.csdn.net/ljheee/article/details

原创 java中list裏面存放map,根據map中的某一個字段進行排序

Java中list裏面存放map,根據map中的某一個字段進行排序 package com; import java.util.ArrayList; import java.util.Collections; import ja

原创 springMVC項目中配置log4j.properties路徑

log4j.properties不打到war包中,單獨寫到一個存放配置文件的文件夾中,在容器中將該文件夾放入classpath,在web.xml中可以如下配置: <context-param> <param-name>conte

原创 請求 攔截器 重定向 無效 解決辦法

在ajax 異步請求下 攔截器過濾器中使用 重定向 頁面響應無效 我這裏用的是springboot框架,用攔截器實現 對請求的攔截 ,session超時直接跳轉到login.html頁面。 @Override public vo