2023年1月19日

windows

摘要: 将软件启动添加至右键快捷方式 --powershell #powershell 所在目录为 C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe 1.windows+r 2.键入 regedit(打开注册表) 3. 在注册表中的 计算机\ 阅读全文

posted @ 2023-01-19 18:02 万水千山z 阅读(106) 评论(0) 推荐(0) 编辑

2022年10月2日

git 命令行操作

摘要: 开发实践: 1.在开发中,dev分支提交了4个commit,push到了远程,提了合并master的pr.leader审核打回两个问题commit,需要修改.在本地修改新增了两个commit,现在需要将修改的commit合并到相应的commit中. 当前状态: 已push的四个commit,时间正序 阅读全文

posted @ 2022-10-02 01:24 万水千山z 阅读(29) 评论(0) 推荐(0) 编辑

2021年4月11日

linux 下的文件下载和上传

摘要: 一.ubuntu 下的 youtube 视频下载工具youtube dl 1.安装pip : sudo apt install python3-pip : 2.安装youtube dl : sudo pip3 install --upgrade youtube_dl 3.下载video文件 : yo 阅读全文

posted @ 2021-04-11 21:55 万水千山z 阅读(270) 评论(0) 推荐(0) 编辑

2020年3月8日

PowerDesigner

摘要: 1. PowerDesigner 批量添加字段 tools->execute commands-> edit/run script Option Explicit Dim mdl ' the current model Set mdl = ActiveModel Dim Tab 'running t 阅读全文

posted @ 2020-03-08 11:11 万水千山z 阅读(200) 评论(0) 推荐(0) 编辑

2019年12月16日

Spring IoC 详解

摘要: 一. Spring Core 官方文档 Chapter 1. The IoC container1.1. Introduction to the Spring IoC container andbeansThis chapter covers the Spring Framework impleme 阅读全文

posted @ 2019-12-16 01:57 万水千山z 阅读(285) 评论(0) 推荐(0) 编辑

2019年7月4日

word操作

摘要: 1.取消首字母大写 文件->选项->校对->自动更正选项 2.文字加边框 选中文字,边框->边框和底纹->... 阅读全文

posted @ 2019-07-04 21:42 万水千山z 阅读(139) 评论(0) 推荐(0) 编辑

2019年4月23日

Mysql 安装及插件

摘要: Navicat 安装及破解 1.navicat 安装及破解 安装好navicat后,打开PatchNavicat.exe ,选择 安装目录( C:\Program Files (x86)\PremiumSoft\Navicat for MySQL )下navicat.exe文件,即可激活成功. 链接 阅读全文

posted @ 2019-04-23 16:28 万水千山z 阅读(632) 评论(0) 推荐(0) 编辑

2018年8月10日

Date相关

摘要: 1. ISO Date 中 CST类型的Date String to Date Instance package com.x.project.Util; import org.junit.Test; import java.text.DateFormat; import java.text.Pars 阅读全文

posted @ 2018-08-10 17:43 万水千山z 阅读(97) 评论(0) 推荐(0) 编辑

2018年5月29日

Java File 和 各种流

摘要: 1.Java读取File文件 1.1读取相对路径下的file 方式一:Spring 的 ResourceLoader: 方式二:用Java的Files和Paths: 1.2 1.3 2. 3. 4. 阅读全文

posted @ 2018-05-29 10:14 万水千山z 阅读(103) 评论(0) 推荐(0) 编辑

2018年5月28日

spring schedule 定时任务

摘要: 1.主方法的类或者需要执行定时任务的类加上@EnableScheduling注解 2.定时任务的方法加上@Scheduled注解,并加上时间设置 3.定时任务时间设置有两种,一种是用fixedRate,一种是con表达式 3.1fixedRate用法如: @Scheduled(fixedRate = 阅读全文

posted @ 2018-05-28 13:45 万水千山z 阅读(3630) 评论(0) 推荐(0) 编辑

导航