上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 59 下一页
  2020年8月12日
摘要: 这是我正在使用的已经配置好的配置文件: <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license 阅读全文
posted @ 2020-08-12 21:49 sunylat 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 1、打开Run/Debug Configurations, 2、选择Spring Boot 下要进行debug调试的服务, 3、在VM options:的填写框中写入: -Xms512m -Xmx512m -Xmn164m -XX:MaxPermSize=250m -XX:ReservedCodeC 阅读全文
posted @ 2020-08-12 21:45 sunylat 阅读(4574) 评论(0) 推荐(0) 编辑
摘要: 介绍得非常详细的文章!! https://blog.csdn.net/huo920/article/details/82082403 https://blog.csdn.net/lovequanquqn/article/details/81627807 阅读全文
posted @ 2020-08-12 21:00 sunylat 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 查询数据的时候提示错误: Column 'CREATE_TIME' in where clause is ambiguous 错误原因:查询语句是对多表数据联合查询,其它表中有相同字段! 解决方法:在出错字段前面加上表的别名即可! 参考: https://blog.csdn.net/iteye_89 阅读全文
posted @ 2020-08-12 15:27 sunylat 阅读(924) 评论(0) 推荐(0) 编辑
  2020年8月5日
摘要: 由于Maven国内下载速度太慢,所以将仓库源换为国内 但大多帖子(我找到的所有帖子)提供的阿里仓库源只有Central或者Public源 而像Spring Boot项目大多依赖还是会从repo.spring.io下载,还是很慢 于是在一番搜索后,发现阿里官方仓库服务站点:https://maven. 阅读全文
posted @ 2020-08-05 22:41 sunylat 阅读(1008) 评论(0) 推荐(0) 编辑
  2020年7月27日
摘要: 在Spring boot的配置文件中加入下面配置项,我当前是在开发状态中,所以配置文件是application-dev.properties,在里面加入: #打印mybatis的SQL语句 logging.level.com.basicData.api.mapper=debug 注意:com.bas 阅读全文
posted @ 2020-07-27 17:57 sunylat 阅读(504) 评论(0) 推荐(0) 编辑
  2020年7月21日
摘要: 在webstorm中,调用定义的方法时,默认都会开启方法参数的提示: 不显示该提示信息时,通过以下的设置可以关闭改功能: 参考: https://blog.csdn.net/qq_40415208/article/details/105455357 阅读全文
posted @ 2020-07-21 17:27 sunylat 阅读(2464) 评论(0) 推荐(0) 编辑
  2020年7月19日
摘要: 问题原因: 高版本的JDK中不包含javax.xml.bind包了! 解决方法: 1,如果是maven管理依赖,则在pom.xml中加入: <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> 阅读全文
posted @ 2020-07-19 13:52 sunylat 阅读(11696) 评论(1) 推荐(0) 编辑
  2020年7月15日
摘要: 虚拟目录设置: 在server.xml的host中加入 <Context path="/focus" docBase="F:\\Focus_SVN" reloadable="true" debug="0" /> 如果虚拟目录中有中文,则需要在localhost中加入:URIEncoding="utf 阅读全文
posted @ 2020-07-15 15:32 sunylat 阅读(257) 评论(0) 推荐(0) 编辑
  2020年5月30日
摘要: 打开菜单Windows->Preferences里的Java->Editor->Content Assist->Advanced,把Java Proposals勾选中。 阅读全文
posted @ 2020-05-30 21:51 sunylat 阅读(378) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 59 下一页