上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 65 下一页
摘要: 1.创建字符串表类型 create type tab_varchar is table of varchar2(2000); 2.创建管道函数 create or replace function get_split_str(p_str varchar2, p_sep varchar2 defaul 阅读全文
posted @ 2019-02-15 16:54 一锤子技术员 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 本文改编自:http://www.sohu.com/a/198681357_505794 假设有一个发送方在向接收方发送消息。如果没有任何加密算法,接收方发送的是一个明文消息:“我是小灰” 如果消息被中间人截获到,即使中间人无法篡改消息,也可以窥探到消息的内容,从而暴露了通信双方的私密。 因此我们不 阅读全文
posted @ 2019-02-14 17:25 一锤子技术员 阅读(12) 评论(0) 推荐(0) 编辑
摘要: AES加密算法入门:https://blog.csdn.net/IndexMan/article/details/87284833 第三方crypto.js下载地址:https://download.csdn.net/download/indexman/10957355 项目组对前端发送的关键请求参 阅读全文
posted @ 2019-02-14 16:22 一锤子技术员 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 项目地址:https://gitee.com/indexman/spring_boot_in_action 前面一章介绍了spring boot自带的缓存,下面讲一下如何在2.0版本中集成并使用redis进行数据缓存。 1.修改pom.xml添加redis依赖 <!--引入redis--> <dep 阅读全文
posted @ 2019-01-28 21:00 一锤子技术员 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 项目地址:https://gitee.com/indexman/spring_boot_in_action 下面就介绍一下如何使用spring boot自带的缓存。按步骤来操作即可,不懂的可以去看项目源码。 1.新建simple-cache模块,修改pom文件 <?xml version="1.0" 阅读全文
posted @ 2019-01-28 18:45 一锤子技术员 阅读(5) 评论(0) 推荐(0) 编辑
摘要: spring boot默认使用的是logback作为日志框架,那如何使用log4j2呢?下面就给大家介绍一下集成步骤: 此处我使用的是spring boot 2.1.2 1.新建一个spring boot项目,配置log4j2依赖 <?xml version="1.0" encoding="UTF- 阅读全文
posted @ 2019-01-25 22:02 一锤子技术员 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 项目地址:https://gitee.com/indexman/spring_boot_in_action 编写实体类User package com.laoxu.springboot.entity; import com.fasterxml.jackson.annotation.JsonIgnor 阅读全文
posted @ 2019-01-18 00:07 一锤子技术员 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 解决步骤如下: D:\program\mysql-5.7.16-winx64\bin>mysql -uroot -p Enter password: ******* Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL 阅读全文
posted @ 2019-01-17 21:24 一锤子技术员 阅读(6) 评论(0) 推荐(0) 编辑
摘要: # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.7/en/server-configuration-defaults.html # *** DO NOT EDIT THIS F 阅读全文
posted @ 2019-01-17 21:16 一锤子技术员 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 项目地址:https://gitee.com/indexman/spring_boot_in_action 1.准备sql文件 将department.sql放到resources路径下 /* Navicat MySQL Data Transfer Source Server : 本地 Source 阅读全文
posted @ 2019-01-16 13:51 一锤子技术员 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 65 下一页