摘要:
1:pom.xml dependency> <groupId>com.kingbase8</groupId> <artifactId>kingbase8-8.6.0</artifactId> <version>1.0</version> <scope>system</scope> <systemPa 阅读全文
摘要:
public static void mergeCell(List<QsggDTO> list, Sheet sheet, int[] index){ int id1 = 0; int id2 = 0; int firstRow = 2; int lastRow = 2; QsggDTO qsggD 阅读全文
摘要:
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSystemScope>true</inclu 阅读全文
摘要:
执行sh脚本时提示:-bash: ./start.sh: /bin/bash^M: 坏的解释器: 没有那个文件或目录 由于start.sh文件在windows上面编辑过,在Windows下每一行结尾是\n\r,而Linux下则是\n,所以才会有 多出来的\r导致上面错误。 通过sed -i 's/\ 阅读全文
摘要:
1:配置环境变量 GO111MODULE=on GOPATH=D:\gopath GOPROXY=https://goproxy.io 2:查看环境变量信息 3:在VSCode中安装Go插件 4:在VSCode中安装Go依赖包 然后全选点击“OK” 安装过程 go.toolsGopath setti 阅读全文
摘要:
在pom配置文件中增加以下配置即可: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1 阅读全文
摘要:
在使用wmsys.wm_concat合并查询结果时,发现中文显示乱码,例如: {TX 此时需要将字段通过to_char转义一下即可。 SELECT t6.username,t6.swjgjc,wmsys.wm_concat(to_char(t6.role_name)) as role_name 阅读全文
摘要:
ServletContext context = request.getServletContext(); ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(context); DbUtilTpl 阅读全文
摘要:
ExecutorService service = Executors.newCachedThreadPool(); Future<Result> future = service.submit(new Callable<Result>() { @Override public Result cal 阅读全文
摘要:
基于Maven构建。 1:修改pom.xml配置文件 <packaging>war</packaging> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</ar 阅读全文