- 博客(407)
- 资源 (27)
- 收藏
- 关注
原创 Oracle_单表更新
update table t1 set t1.col_1 = t1.col2 where t1.col_1 is null and t1.col_2 is not null;
2021-02-12 09:26:41 565
转载 Redis_setnx_处理多节点部署导致定时任务多次执行问题
SETNXSETNX key value将 key 的值设为 value ,当且仅当 key 不存在。若给定的 key 已经存在,则 SETNX 不做任何动作。SETNX 是『SET if Not eXists』(如果不存在,则 SET)的简写。基于Redis(setnx)实现分布式锁解决项目多部署导致定时任务多次执行redis setnx解决定时任务多节点部署并发问题(分布式锁)...
2021-01-27 23:41:00 671
原创 JAVA_Calendar_类获取指定年月的第一天日期和最后一天的日期
获取某年的第一天public static Date getYearFirstDay(int year, int month) {//获取Calendar类的实例Calendar c = Calendar.getInstance();c.clear();c.set(Calendar.YEAR, year);return c.getTime();}}获取某年的最后一天public static Date getYearLastDay(int year, int month) {//获取
2020-12-23 16:27:50 1646
转载 MyBatis_foreach_list_array_map
list<!--List:forech中的collection属性类型是List,collection的值必须是:list,item的值可以随意,Dao接口中参数名字随意 --> <select id="getIteamsList" resultType="Employees"> select * from EMPLOYEES e where e.EMPLOYEE_ID in <for
2020-12-19 19:24:41 292 1
原创 JAVA_list_array_转换
list to array int size=list.size(); String[] array = (String[])list.toArray(new String[size]array to listList<String> list=Arrays.asList(array);
2020-12-19 14:49:14 168 1
原创 java.lang.IllegalStateException: Duplicate key
问题描述:java8 lambda转map报错原代码:Map<String, String> RelationMap = relation.stream().collect(Collectors.toMap(s -> s[2], s -> s[1])));修改后代码:java8中转换成map时,提供了第三个参数,代表的是重复key的值该如何存放,如下:Map<String, String> RelationMap = relation.stream().c
2020-12-18 19:51:57 250 2
原创 Oracle_查询当前用户_其他用户下所有表
sqlselect * from user_tables;select * from all_tables where owner='OTHER_TABLE' order by table_name asc;
2020-09-14 17:00:59 1258
原创 Swagger_扫描类上注解_withClassAnnotation
指定要扫描的包 @Bean public Docket petApi() { return new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo()) .select() .apis(RequestHandlerSelectors.basePackage("com.dmeo")) //指定提供接口所在的基包 .build();
2020-07-25 15:51:36 3188
原创 Swagger_Date入参测试
入参Date格式Mon Oct 29 17:16:04 CST 2018java_Swagger注解@ApiParam(required=false,name="testTime",value="测试时间")@RequestParam(required=false) Date testTime引用:Swagger如何测试Date类型参数
2020-07-24 20:22:16 1030
原创 ORA-01033: ORACLE initialization or shutdown in progress
问题描述: 登录oracle时,报错问题处理: 把所有已经打开的plsql窗口都关闭,再次登录,好了。。
2020-07-02 00:44:53 268
原创 严重: 异常将上下文初始化事件发送到类的侦听器实例.
启动项目报错:严重: 异常将上下文初始化事件发送到类的侦听器实例.问题处理:jdk8 换成 jdk7,(原来用的是jdk7,被换成了jdk8,就报错了)amazing,解决了
2020-06-23 11:08:44 3276
原创 WIN10_我们找不到你的相机_你的组织已关闭自动更新
笔记本WIN10,打开相机第二天就变这样了。。。。。。。设备管理器 都 找不到照相机,官网驱动包也没用。。。。。。。。。。。。。原因是这个导致的。。。。。。。。。。解决方式:按方案二,方案三操作,更新 重启 解决Win10你的组织已关闭自动更新完美解决方案...
2020-06-07 00:14:06 2117
原创 1Element list cannot have character children, because the type’s content type is element-only.
Element 'list cannot have character children, because the type’s content type is element-only.问题描述:项目无法访问,发现服务器报错Element 'list' cannot have character [children], because the type's content type is element-only.问题处理:<list></list>之间是否有其他元素
2020-06-01 10:23:26 603
原创 java.lang.IllegalArgumentException:No bean specified.
问题描述: 后台到前台渲染控制台报错问题原因: form表单 name,多了个空格,前后台无法对应,导致No bean specified。。。。。。。。。。。。。
2020-05-22 21:31:23 2131
转载 Oracle_START WITH_CONNECT BY PRIOR
oracle的start with connect by prior如何使用
2020-05-21 01:51:35 239
转载 Oracle_同义词
Oracle 同义词Oracle 同义词1. Oracle同义词简介Oracle数据库中提供了同义词管理的功能。同义词是数据库方案对象的一个别名,经常用于简化对象访问和提高对象访问的安全性。在使用同义词时,Oracle数据库将它翻译成对应方案对象的名字。与视图类似,同义词并不占用实际存储空间,只有在数据字典中保存了同义词的定义。在Oracle数据库中的大部分数据库对象,如表、视图、同义词、序列、存储过程、包等等,数据库管理员都可以根据实际情况为他们定义同义词。同义词拥有如下好处:节省大量的
2020-05-09 10:11:46 466
原创 Oracle_plsql_this is the trial version of pl/sql developeryou've got X day left
plsqlProduct Code:ljkfuhjpccxt8xq2re37n97595ldmv9kchSerial Number:302967Password:xs374caLicense Number:999
2020-04-28 13:58:35 1109
原创 Database charater set(UTF8) and Client character set(ZHS16GBK) aredifferent.
问题描述:打开plsql客户端弹窗如下,提示数据库字符集 和 客户端字符集不一致问题处理:win+rregedit按照如下路径修改注册表信息(WOW6432Node和提示路径可能不一样)SIMPLIFIED CHINESE_CHINA.AL32UTF8...
2020-04-21 23:43:26 470
原创 leetcode_Oracle_197. 上升的温度_偏移分析函数 lag()与lead()
197. 上升的温度ORACLE 偏移分析函数 lag()与lead() 用法select temp.id as "Id" from (select id, recorddate r2, Temperature as t2, lag(Temperature, 1, null) over(order ...
2020-04-21 23:32:04 317
原创 leetcode_Oracle_176. 第二高的薪水
176. 第二高的薪水SELECT MAX(Salary) AS "SecondHighestSalary"FROM Employeewhere salary < ( SELECT MAX(Salary) FROM Employee )
2020-04-16 03:09:56 359
转载 !%注释区别
!注释和%注释有什么区别<!--comment会包含在最终生成的html文件中--> <%--comment不会包含在最终生成的html文件中--%>
2020-04-15 01:55:29 695
转载 java.lang.OutOfMemoryError: PermGen space
开发中遇到Eclipse报错:java.lang.OutOfMemoryError: PermGen spacejava.lang.OutOfMemoryError: PermGen space有效解决方法是否有效未知。。。tomcat\bin catalina.batExecute The Requested Command 添加如下设置>set JAVA_OPTS=%J...
2020-04-12 21:05:58 263
原创 eclipse_svn提交忽略文件设置
references -> Team -> Ignored Resources --> 点击 Add Patter*.class,*.classpath,*.project,*.settings,*/target/*
2020-04-09 16:10:30 290
转载 eclipse_开启出现弹窗_Subversive Connector Discovery
Eclipse开启弹出"Subversive Connector Discovery"窗口解决办法工作空间.metadata\.plugins\org.eclipse.core.runtime\.settings\org.eclipse.ui.workbench.prefs正常情况:org.eclipse.team.svn.ui.decorator.SVNLightweightDeco...
2020-04-09 11:14:24 549 1
原创 leetcode_Oracle_184. 部门工资最高的员工
184. 部门工资最高的员工select depart.Name as "Department",temp.Name as "Employee" ,temp.Salary as "Salary"from Employee temp,Department depart where temp.DepartmentId = depart.Id and(temp.Salary,tem...
2020-04-09 00:44:00 329
原创 maven_maven-archetype-quickstart-1.1.jar下载地址
maven-archetype-quickstart-1.1.jar
2020-04-07 19:04:39 4001
原创 leetcode_Oracle_178. 分数排名
178. 分数排名row_number() 是没有重复值的排序dense_rank() 是连续排序,两个第二名仍然跟着第三名rank() 是跳跃拍学,两个第二名下来就是第四名select Score as "Score",dense_rank() over(order by Score desc) as "Rank" from Scoresselect B.S...
2020-04-07 02:06:08 247
原创 leetcode_Oracle_181. 超过经理收入的员工
181. 超过经理收入的员工select a.Name as "Employee" from Employee a ,Employee b where a.ManagerId = b.Id and a.Salary >b.Salary select a.Name as "Employee"from Employee awhere a.salary > (selec...
2020-04-05 10:35:16 225
原创 leetcode_Oracle_175. 组合两个表
175. 组合两个表select b.FirstName as "FirstName",b.LastName as "LastName",a.City as "City",a.State as "State"from Person b left join Address a on a.PersonId = b.PersonIdselect b.FirstName as "F...
2020-04-04 18:51:56 204
原创 leetcode_Oracle_620. 有趣的电影
620. 有趣的电影select id as "id",movie as "movie",description as "description",rating as "rating"from cinema where description <>'boring' and mod(id,2)=1 order by rating desc;
2020-04-03 14:05:54 188
原创 leetcode_Oracle_595. 大的国家
595. 大的国家select name as "name",population as "population", area as "area"from world where area>3000000unionselect name as "name",population as "population", area as "area"from world where po...
2020-04-03 13:19:21 216
原创 leetcode_Oracle_182. 查找重复的电子邮箱
182. 查找重复的电子邮箱select Email as "Email" from (select Email,count(1) as countsfrom Persongroup by Email) temp where temp.counts>1;select distinct a.Email as "Email" from Person a,Person b whe...
2020-04-03 10:17:48 601
原创 MySQL_navicat连接报错_2059 - Authentication plugin 'caching_sha2_password'
navicat 连接本地MySQL报错执行下面命令 即可解决se mysql;ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';
2020-03-31 10:31:47 202
原创 chrome_crx插件无法安装问题
问题:之前chorme crx插件直接拖动到 拓展程序就可以使用,现在不行了处理:把crx后缀 改成zip后缀 再拉入拓展程序,即可使用。
2020-03-30 15:20:22 496
原创 MySQL_环境安装命令记录
1mysqld --initialize-insecure --user=mysqlmysqld --initialize-insecure自动生成无密码的root用户mysqld --initialize自动生成带随机密码的root用户。data文件夹不为空是不能执行这个命令的。mysql --installnet start mysqlmysqld --remove ...
2020-03-21 17:14:48 514
hibernate-jpa-2.1-api-1.0.0.final-sources.jar
2018-01-12
PowerDesigner12.5 license
2018-01-09
Sublime Text Build
2017-10-14
chrome postman 插件
2017-10-12
自带目录树形查看文件notepad++
2017-10-10
archetype-catalog.xml
2017-10-10
安装过Explorer插件的 notepad++
2017-09-19
截屏软件 faststone capture
2017-09-19
Everything
2017-09-19
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人