- 博客(13)
- 收藏
- 关注
原创 工作中使用linux系统指令总结
1. 常用的简单命令cd usr/local 进入目录ls 打印当前目录下文件(只显示名称)ll 打印当前目录下文件(显示名称、权限、文件大小、创建时间等信息)pwd 查看当前路径mkdir mydata 创建文件夹mydatatouch demo.txt 创建文件demo.txtvi demo.txt 编辑demo.txt(输入 i 进入编辑模式,Esc键退出编辑模式,输入 :wq! 修改退出,输入 :q! 不修改退出,非编辑模式输入 dd 可以删除光标所在行)cat demo.txt
2023-04-17 18:29:21 61
原创 stream
记录也是种学习创建/获取Stream.of(“a”,“b”,“c”);Stream.iterator(10, n->n+1);Stream.generate(Math::random);集合/数组/字符串 .stream();循环 forEachlist.forEach(System.out::println);映射 mapstream.map(i->i*3)List<String> usernameList = list.stream().map(User:
2021-04-25 23:37:19 103
原创 单例模式
记录也是种学习饿汉式public class Singleton { private static Singleton instance = new Singleton(); private Singleton(){ } public static Singleton getInstance() { return instance; }}懒汉式public class Singleton { private stat
2021-04-25 23:05:38 76
原创 springboot读取配置文件
从application中读取第一种方法: @Autowired private Environment environment; System.out.println(environment.getProperty("name"));第二种方法public class PropertiesConfiguration { @Value("${name}") ...
2020-04-12 13:07:03 96
原创 bootstramp时间插件
<head> <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js">&...
2020-04-10 11:16:04 122
原创 java自定义注解(aop使用)
自定义注解类import java.lang.annotation.*;@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface SysLog { String value() default "";}定义切面类pom引入aop: &l...
2020-04-10 10:41:10 204
原创 springboot集成mybatis的两种写法
sql写在java类中 @Mapper public interface UserMapper { @Select("select * from user") List<UserEntity> users(); }sql写在xml @Mapper public interface UserMapper { List<UserEn...
2020-04-09 17:52:26 391
原创 将springboot打成war包
单model项目a. pom中jar改成warb. 启动类extends SpringBootServletInitializer重写 @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(AdminAppl...
2020-04-08 22:42:40 130
原创 mysql数据库字段为json时,查询条件怎么写
参考:https://blog.csdn.net/qq_21187515/article/details/90760337值为json数组project 表name data合同 [{“id”:“1”,“status”:“UNCHECKED”}, {“id”:"2,“status”:“CHECKED”}]请假 [{“id”:“1”,“status”:“CHECKED”}, {“...
2020-03-24 10:22:43 1175
原创 分页简单实现
纯html+js,直接用数组模拟后端返回数据页面展示:代码:<html> <head> <title>分页</title> </head> <body> <div style="margin-left: 500px; "> <table id="table"> ...
2020-02-15 22:48:45 123
原创 vue项目启动
nodejs安装nodejs,配置环境变量查看版本 $ npm -v升级或安装 cnpm(淘宝)$ npm install -g cnpm --registry=https://registry.npm.taobao.org$ cnpm install vue全局安装 vue-cli$ cnpm install --global vue-cli创建一个基于 webpack 模板的...
2019-04-01 22:23:12 406
原创 查看关闭端口号
windows:1、查看端口8001被哪个进程占用;由下图可以看出,被进程为3736的占用命令:netstat -ano | findstr “8001”2、查看进程号为3736对应的进程;由下图可以看出,是被java.exe占用了命令:tasklist | findstr “3736”3、结束该进程命令:taskkill /f /t /im java.exe4、查看所有的端口占用情...
2019-03-22 16:56:36 259 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人