spring: #thymeleaf thymeleaf: cache: false prefix: classpath:/templates/ check-template-location: true suffix: .html encoding: utf-8 mode: HTML #这个是关键 ...
分类:
编程语言 时间:
2021-06-02 19:47:35
阅读次数:
0
public static SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");public static SimpleDateFormat format1 = new SimpleDateFormat( "yyyyMMdd HH:m ...
分类:
编程语言 时间:
2021-06-02 19:42:04
阅读次数:
0
package whale.leetcode.simple; /** * @Author: WhaleFall541 * @Date: 2021/5/31 23:22 */ public class PowerOfFour { public static void main(String[] arg ...
分类:
编程语言 时间:
2021-06-02 19:35:24
阅读次数:
0
package kuangs.lesson1;import java.net.InetAddress;import java.net.UnknownHostException;//测试IPpublic class TestInetAddress { public static void main(S ...
分类:
Web程序 时间:
2021-06-02 19:04:04
阅读次数:
0
/** * 计算barcode最后一位 * @param code 12位的barcode * @return */ public static String padBarcode(String code){ if( null == code || code.length() != 12 ){ th ...
分类:
其他好文 时间:
2021-06-02 18:53:48
阅读次数:
0
一、基本概念dva 首先是一个基于 redux 和 redux-saga 的数据流方案,然后为了简化开发体验,还额外内置了 react-router 和 fetch,所以也可以理解为一个轻量级的应用框架。 易学易用,仅有 6 个 api,对 redux 用户尤其友好,配合 umi 使用后更是降低为 ...
分类:
其他好文 时间:
2021-06-02 18:42:29
阅读次数:
0
1、 runAsync 和 supplyAsync方法 CompletableFuture 提供了四个静态方法来创建一个异步操作。 public static CompletableFuture<Void> runAsync(Runnable runnable) public static Comp ...
分类:
其他好文 时间:
2021-06-02 17:33:34
阅读次数:
0
1、主页布局 2、路由跳转 通过 v-for 双层循环分别进行一级菜单和二级菜单的渲染,菜单开启router后,index可跳转到相应的路由组件。 3、用户信息列表布局 面包屑导航:el-breadcrumb 信息容器(包含标题,内容和操作):el-card 栅格布局的使用: el-row、el-c ...
分类:
其他好文 时间:
2021-06-02 17:15:06
阅读次数:
0
ArrayList实现 code import java.util.ArrayList; import java.util.Collections; public class PokerDemo { public static void main(String[] args) { // 使用Arra ...
分类:
编程语言 时间:
2021-06-02 16:52:04
阅读次数:
0
public class HelloWorld { public static void main(String[] args) { //大小写十分敏感 String Man="qinjiang"; String man="qinjiang"; String Ahello="qinjiang"; S ...
分类:
其他好文 时间:
2021-06-02 16:40:41
阅读次数:
0