- 博客(7)
- 资源 (1)
- 收藏
- 关注
原创 springAOP增强实现
自定义spring AOP增强自定义一个注解@Target(ElementType.METHOD)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface SysLog { String value() default "";}AOP实现@Aspect@Componentpublic class SysLogAspect { private static final Logger logger =
2022-04-24 09:31:53 143
原创 Mysql通过坐标点查询坐标范围内的其他坐标函数
-- mysql中心点查询几公里范围其他坐标CREATE DEFINER=`air`@`%` FUNCTION `mydistance`(sLongitude VARCHAR(20), sLatitude VARCHAR(20),sLongitude1 VARCHAR(20), sLatitude1 VARCHAR(20)) RETURNS double READS SQL DATAbegin return ifnull( ROUND( 6378.138 * 2 * AS
2021-11-30 15:25:36 1229
原创 java计算年度剩余天数
java计算年度剩余天数输入日期 计算当年天数public static int parseRemainDays(String strDate){ if(strDate==null || strDate.isEmpty() || strDate.length()<10){ return -1; } SimPleDateFormat sm = new SimPleDateFormat(strDate.length()>18?"yyyy-MM-dd HH:mm:ss":"yyyy-MM
2021-09-09 10:58:57 1116
原创 Mysql查询数据库中所有表的数据量
Mysql查询数据库中所有表的数据量select table_scheMA,table_name,table_rows from information_schema.TABLES where table_schema=‘库名’ and table_rows>0 order by table_rows desc;
2021-07-05 09:22:42 2079
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人