09 2019 档案

摘要:sspringboot项目如果不想每次修改配置文件就要重新打包jar的话,可以进行以下配置进行打包 1.在resources下新建assembly文件夹package.xml 2.在pom中配置下面代码 然后在项目文件夹下shift+右键打开命令行窗口输入:mvn package -DskipTes 阅读全文
posted @ 2019-09-11 12:21 与君共行之 阅读(9220) 评论(0) 推荐(0)
摘要:select * from (select t.*,row_number() over(partition by 分组字段 order by rownum) rn from 表名 t where 条件语句) where rn= 分组中的第几条; 引用:https://blog.csdn.net/li 阅读全文
posted @ 2019-09-06 16:48 与君共行之 阅读(902) 评论(0) 推荐(0)
摘要:oracle数据库备份命令exp 用户名/密码@orcl file=d:\xxxxxx.dmp owner=用户名 oracle数据库还原命令sqlplus conn / as sysdba drop user 用户名 cascade; create user 用户名 identified by 密 阅读全文
posted @ 2019-09-06 09:19 与君共行之 阅读(7009) 评论(0) 推荐(0)