摘要: 热部署,就是在应用正在运行的时候升级软件,却不需要重新启动应用。 使用springboot结合dev-tool工具,快速加载启动应用 官方地址:https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsin 阅读全文
posted @ 2018-10-12 16:32 platycoden 阅读(837) 评论(0) 推荐(0) 编辑
摘要: springboot文件上传 MultipartFile file,源自SpringMVC MultipartFile 对象的transferTo方法,用于文件保存(效率和操作比原先用FileOutStream方便和高效) 前端简易代码 文件大小配置,启动类里面配置 在application.pro 阅读全文
posted @ 2018-10-12 16:06 platycoden 阅读(3912) 评论(0) 推荐(0) 编辑
摘要: 一、常用框架 阿里 fastjson,谷歌gson等 JavaBean序列化为Json,性能:Jackson > FastJson > Gson > Json-lib 同个结构 Jackson、FastJson、Gson类库各有优点,各有自己的专长(空间换时间,时间换空间) 二、jackson相关自 阅读全文
posted @ 2018-10-12 15:14 platycoden 阅读(2063) 评论(0) 推荐(0) 编辑
摘要: 一、HTTP请求配置讲解 简介:SpringBoot2.x HTTP请求注解讲解和简化注解配置技巧 1、@RestController和@RequestMapping是springMVC的注解,不是springboot特有的 2、@RestController=@Controller+@Respon 阅读全文
posted @ 2018-10-12 14:59 platycoden 阅读(8769) 评论(0) 推荐(0) 编辑
摘要: 常见错误: 常见错误一:These projects must be migrated to correctly function in this version of MyEclipse 需要修改编码方式 myeclipse编码为GBK,项目编码为UTF-8,将myeclipse的默认编码方式改为 阅读全文
posted @ 2018-10-10 14:54 platycoden 阅读(2653) 评论(0) 推荐(0) 编辑
摘要: 1.修改Maven的 repository的路径 2.找到mirrors 使用阿里云镜像 3.打开 MyEclipse/Eclipse 打开“Windows”--“Preferences” 阅读全文
posted @ 2018-10-10 11:31 platycoden 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 1.创建存储过程 注:执行语句后,如果需要请添加commit 2.添加定时job,执行存储过程 declare job_delete number; begin dbms_job.submit( job_delete, 'PROC_SPEED_DELETE3DAYS;', sysdate, 'sys 阅读全文
posted @ 2018-01-18 23:23 platycoden 阅读(644) 评论(0) 推荐(0) 编辑
摘要: Maven下载 下载地址:http://maven.apache.org/download.cgi 下载后,解压得到 Maven目录分析: bin文件夹:含有mvn运行的脚本 boot文件夹:含有plexus-吃辣爽死我rlds类加载器框架 conf文件夹:含有settings.xml配置文件 li 阅读全文
posted @ 2018-01-18 23:14 platycoden 阅读(80768) 评论(1) 推荐(3) 编辑
摘要: 1.登录oracle 2.查看密码有效期时长 SELECT * FROM dba_profiles s WHERE s.profile='DEFAULT' AND resource_name='PASSWORD_LIFE_TIME'; 注:此图为修改之后 3.将密码设置成永不过期 ALTER PRO 阅读全文
posted @ 2018-01-18 11:10 platycoden 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 进入cmd 输入命令:telnet 192.168.x.x(交换机IP地址) 登陆后,更换用户"sys" 输入命令:dis cur(展示当前状态) 进入后按"空格"键继续向下浏览,按"q"键退出。 查找到此处。 配置IP映射的命令为: nat server protocol tcp global x 阅读全文
posted @ 2017-01-04 11:30 platycoden 阅读(12731) 评论(0) 推荐(0) 编辑