分类
正在加载今日诗词...
hexo g 命令出现page.tags.forEach is not a function hexo g 命令出现page.tags.forEach is not a function
这个问题的出现时很久都没有解决,有一天发现了问题,从github上解决了。 解决方法在matery博客的 source 目录下, _post 目录之外的 page 文章不能有 tag 标签,去除后问题得到解决。 来源:https://git
windows系统关闭某个端口的服务 windows系统关闭某个端口的服务
利用下面命令查询例如查询,404端口。 netstat -ano | findstr 443 就发现是5624进程占用了,所以关掉即可!
could not resolve placeholder ‘redis.host1’ in string value “${redis.host1}” could not resolve placeholder ‘redis.host1’ in string value “${redis.host1}”
原因:spring 的配置文件2处地方导入了配置文件 Spring容器仅允许最多定义一个PropertyPlaceholderConfigurer(或 <context:property-placeholder />),其余的
Tomcat部署没有问题,但是一直报错404 Tomcat部署没有问题,但是一直报错404
url中的路径应该跟context配置保持一致1、url中的路径 2、context路径设置 以上设置就是最简洁的设置检查方式,最常见的问题是只修改了url的路径没有修改context的路径,因此报了404。 这个是从网上看到的,当时就是
Tomcat控制台乱码解决方法 Tomcat控制台乱码解决方法
本地使用Tomcat启动项目的时候,出现乱码,报错情况如下: Connected to the target VM, address: '127.0.0.1:53135', transport: 'socket' 22-Jan-2019
SpringMvc(ssm)加入拦截器后swagger不能访问问题 SpringMvc(ssm)加入拦截器后swagger不能访问问题
只需要加入下面的配置即可。 @Configuration public class MyWebAppConfig extends WebMvcConfigurationSupport { @Bean LoginInter