1、效果如图 2、Controller @GetMapping("/exportExcel") public void exportExcel(@RequestParam(value = "menu") String menu, @RequestParam(value = "dwflglId") i ...
分类:
其他好文 时间:
2020-07-10 18:49:09
阅读次数:
424
报错内容: ....,Inline JavaScript is not enabled. Is it set in your options? 解决办法: const { override, fixBabelImports, addLessLoader } = require("customize- ...
分类:
其他好文 时间:
2020-07-10 17:25:14
阅读次数:
83
官方地址:https://wiki.connect.qq.com/qq%E7%99%BB%E5%BD%95 添加 open_sdk_xxxx_lite.jar 必要权限 <uses-permission android:name="android.permission.INTERNET" /> <u ...
分类:
移动开发 时间:
2020-07-10 11:28:57
阅读次数:
155
package com.sjw.flink import java.sql.{Connection, DriverManager, PreparedStatement} import org.apache.flink.configuration.Configurationimport org.apa ...
分类:
数据库 时间:
2020-07-10 00:01:11
阅读次数:
81
定制比较规则: 1.内部比较器|自然排序 要当前比较的类型实现一个借口Comparable接口,重写compareTo方法,方法的内部制定比较规则 硬编码习惯,不够灵活,每次修改源代码 @Override public int compareTo(Person o) { return o.age-t ...
分类:
其他好文 时间:
2020-07-09 22:17:11
阅读次数:
74
AutomaticKeepAliveClientMixin AutomaticKeepAliveClientMixin这个Mixin就是Flutter为了保持页面设置的。哪个页面需要保持页面状态,就在这个页面进行混入。 不过使用使用这个Mixin是有几个先决条件的: 使用的页面必须是Stateful ...
分类:
其他好文 时间:
2020-07-09 10:37:28
阅读次数:
284
1、导入相关依赖 <!--使用PageHelper分页插件--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.0.0</version> </ ...
分类:
编程语言 时间:
2020-07-08 22:54:41
阅读次数:
79
@EnableWebSecurity public class seccurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Ex ...
分类:
编程语言 时间:
2020-07-08 20:07:45
阅读次数:
48
一、线程的创建 1、继承thread类 public class MyThread extends Thread { @Override public void run() { for (int i = 0; i < 200; i++) { System.out.println("我在学习线程问题1 ...
分类:
编程语言 时间:
2020-07-07 22:10:06
阅读次数:
76
原理: 1 zookeeper 可以建立临时节点文件 znode 结构如高度为2的树 在 basepath+lockname上建立 basepath+lockname 1 basepath+lockname 2 basepath+lockname 3 的顺序节点 2 watcher机制。可以建立某一 ...
分类:
其他好文 时间:
2020-07-07 17:48:36
阅读次数:
67