会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
故木
生于理想,死于欲望
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
下一页
2020年6月3日
liunx 新建自启服务
摘要: 创建服务基本概念: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)
2020年5月11日
scala 语法特性小计
摘要: 末尾不用加; “”“ ”“”“ 模板字符串 变量定义 val 不可变 var 可变 val定义值时,会做call-by-value操作, >定义时会立即执行等号右边的 且只在定义时执行 def则会做call-by-name操作。 > 定义不执行 使用一次 执行一次
阅读全文
posted @ 2020-05-11 15:29 故木
阅读(114)
评论(0)
推荐(0)
2020年5月10日
spring boot 静态资源 访问 配置
摘要: 1.spring.mvc.static-path-pattern 这个配置项是告诉springboot,应该以什么样的方式去寻找资源。默认配置为 /* 。换句话说,只有静态资源满足什么样的匹配条件,Spring Boot才会处理静态资源请求 如果原先访问首页的地址是:http://localhost
阅读全文
posted @ 2020-05-10 17:32 故木
阅读(442)
评论(0)
推荐(0)
2020年4月22日
SVN-Unable to create pristine install stream
摘要: 解决办法 1.在.svn目录下新建tmp文件夹2.svn右键选择clean up,清理工程(推荐使用第二种办法)
阅读全文
posted @ 2020-04-22 16:59 故木
阅读(1066)
评论(0)
推荐(0)
2020年4月13日
idea 编译 错误 Error:java: Compilation failed: internal java compiler error 解决方案
摘要: 手动修改(可能会被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)
2020年4月11日
spring boot中装配依赖包中的@Configuration
摘要: 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)
YAML配置复杂集合类型
摘要: 实体类 @Configuration @ConfigurationProperties(prefix = "db-config") public class DbConfig { List<DbInfo> defalutConfigList; boolean isReadConfig; public
阅读全文
posted @ 2020-04-11 13:52 故木
阅读(3758)
评论(0)
推荐(0)
2020年3月26日
webpack vue-router vue 打包上线一些列问题
摘要: 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)
2020年3月11日
idea 注释模板
摘要: 文件头注解模板 /** *@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)
2020年3月9日
JavaScript中reduce()方法
摘要: 本文参考: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
下一页
公告