上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
摘要: 创建服务基本概念:https://www.cnblogs.com/mafeng/p/10316351.html tomcat启动脚本:https://blog.csdn.net/zxnlmj/article/details/22933477 #!/bin/bash # This is the ini 阅读全文
posted @ 2020-06-03 16:49 故木 阅读(133) 评论(0) 推荐(0)
摘要: 末尾不用加; “”“ ”“”“ 模板字符串 变量定义 val 不可变 var 可变 val定义值时,会做call-by-value操作, >定义时会立即执行等号右边的 且只在定义时执行 def则会做call-by-name操作。 > 定义不执行 使用一次 执行一次 阅读全文
posted @ 2020-05-11 15:29 故木 阅读(114) 评论(0) 推荐(0)
摘要: 1.spring.mvc.static-path-pattern 这个配置项是告诉springboot,应该以什么样的方式去寻找资源。默认配置为 /* 。换句话说,只有静态资源满足什么样的匹配条件,Spring Boot才会处理静态资源请求 如果原先访问首页的地址是:http://localhost 阅读全文
posted @ 2020-05-10 17:32 故木 阅读(442) 评论(0) 推荐(0)
摘要: 解决办法 1.在.svn目录下新建tmp文件夹2.svn右键选择clean up,清理工程(推荐使用第二种办法) 阅读全文
posted @ 2020-04-22 16:59 故木 阅读(1066) 评论(0) 推荐(0)
摘要: 手动修改(可能会被idea自动改回1.5) 修改为对应的编译版本 在工程的pom中添加如下配置 <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plug 阅读全文
posted @ 2020-04-13 08:21 故木 阅读(5834) 评论(0) 推荐(0)
摘要: org.springframework.boot.autoconfigure.EnableAutoConfiguration=\ indi.cyh.jdbctool.modle.DbConfig https://blog.csdn.net/SkyeBeFreeman/article/details/ 阅读全文
posted @ 2020-04-11 14:28 故木 阅读(2691) 评论(0) 推荐(0)
摘要: 实体类 @Configuration @ConfigurationProperties(prefix = "db-config") public class DbConfig { List<DbInfo> defalutConfigList; boolean isReadConfig; public 阅读全文
posted @ 2020-04-11 13:52 故木 阅读(3758) 评论(0) 推荐(0)
摘要: tomcat服务如何配置vue-router的history模式在应用网站根目录下新建 WEB-INF文件夹并在其下新建web.xml文件 <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/ 阅读全文
posted @ 2020-03-26 13:45 故木 阅读(264) 评论(0) 推荐(0)
摘要: 文件头注解模板 /** *@ClassName ${NAME} *@Description TODO *@Author gm *@Date ${DATE} ${TIME} */ 方法模板 * $param$ * @return $return$ * @author CYH * @date $date 阅读全文
posted @ 2020-03-11 20:58 故木 阅读(403) 评论(0) 推荐(0)
摘要: 本文参考:https://aotu.io/notes/2016/04/14/js-reduce/index.html arr.reduce(callback[, initialValue]) 实例: 数组 arr = [1,2,3,4] 求数组的和 forEach 实现 123 var arr = 阅读全文
posted @ 2020-03-09 19:53 故木 阅读(114) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页