摘要: <trim prefix="" suffix="" suffixOverrides="" prefixOverrides=""></trim>prefix:在trim标签内sql语句加上前缀。suffix:在trim标签内sql语句加上后缀。suffixOverrides:指定去除多余的后缀内容,如 阅读全文
posted @ 2022-07-05 09:55 全琪俊 阅读(438) 评论(0) 推荐(0)
摘要: 接口 /admin/actuator management: endpoints: web: exposure: exclude: '*' 处理方式是在nacos中的application文件中 阅读全文
posted @ 2022-06-30 16:55 全琪俊 阅读(299) 评论(0) 推荐(0)
摘要: mybatis-plus: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl 阅读全文
posted @ 2022-06-27 10:04 全琪俊 阅读(189) 评论(0) 推荐(0)
摘要: response.setContentType("application/octet-stream; charset=UTF-8"); //response为HttpServletResponse对象response.setContentType("application/vnd.ms-excel; 阅读全文
posted @ 2022-06-27 09:28 全琪俊 阅读(250) 评论(0) 推荐(0)
摘要: Wrapper<WxAutoReply> queryWrapper = Wrappers.<WxAutoReply>lambdaQuery() .eq(WxAutoReply::getReqKey, wxAutoReply.getReqKey()) .eq(WxAutoReply::getRepTy 阅读全文
posted @ 2022-06-27 09:15 全琪俊 阅读(1001) 评论(0) 推荐(0)
摘要: import java.io.*;import java.net.HttpURLConnection;import java.net.MalformedURLException;import java.net.URL;import java.net.URLEncoder;import java.ut 阅读全文
posted @ 2022-06-23 14:54 全琪俊 阅读(4999) 评论(0) 推荐(0)
摘要: table-create-db: username: root password: xxx driver-class-name: com.mysql.cj.jdbc.Driver url: CREATE TABLE `work_table` ( `id` int(10) unsigned NOT N 阅读全文
posted @ 2022-06-23 14:50 全琪俊 阅读(347) 评论(0) 推荐(0)
摘要: SELECTCOLUMN_NAMEcolumnName,COLUMN_TYPE columnType,DATA_TYPE dataType,CHARACTER_MAXIMUM_LENGTH characterMaximumLength,IS_NULLABLE isNullable,COLUMN_DE 阅读全文
posted @ 2022-06-15 11:33 全琪俊 阅读(648) 评论(0) 推荐(0)
摘要: <insert id="insertUser" > insert into sys_user(id,username,salt,password,phone,dept_id,real_name,dd_user_id) values (#{param.id},#{param.username},#{p 阅读全文
posted @ 2022-06-13 13:50 全琪俊 阅读(54) 评论(0) 推荐(0)
摘要: @Api(value = "定时任务执行", tags = "定时任务执行")@Slf4j@Component@EnableSchedulingpublic class ScheduledController { //@Scheduled(fixedRate = 60000)//每隔一分钟执行一次 阅读全文
posted @ 2022-06-10 14:01 全琪俊 阅读(48) 评论(0) 推荐(0)