
intellj idea配置问题总结
那后生
个威 heimi1605
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Can not construct instance of xxxxxxxxx : no suitable constructor found
文章目录原因解决原因原来Jackson默认会去调用无参数的构造函数,如果自定义了带参数构造函数,Object自带的无参数构造函数就没有了。而且就算提供了带参数构造函数,jackson也无法无歧义地调用带参数构造函数,因为调用参数的顺序无法确定。解决解决方法,显式声明一下无参数构造函数就可以了。...原创 2021-03-17 15:24:17 · 981 阅读 · 0 评论 -
playframework object index is not a member of package views.html intellij 问题修复
在intellij 中启动play项目遇到object index is not a member of package views.html解决方法scala 的视图文件没有编译,所以产生了这种问题,可以手动编译视图,但是这不是我们想要的。通过打开Settings/Language and Frameworks/Play参考https://stackoverflow.com/questions/39827783/intellij-play-object-index-is-not-a-原创 2020-06-10 10:56:11 · 532 阅读 · 0 评论 -
“Unknown artifact. Not resolved or indexed” error for scalatest 手动添加依赖
文章目录问题描述解决 sbt 下载依赖后不能使用问题描述使用sbt 下载了依赖后代码中不能使用 import 出问题,中间排查了很久决定记录一下。解决 sbt 下载依赖后不能使用sbt 1.3.0+使用Coursier实施依赖项管理。 在sbt 1.3.0之前,sbt使用Apache Ivy已经有十年了。 Coursier在保持兼容性方面做得很好,但是某些功能可能特定于Apache Iv...原创 2020-04-06 17:10:57 · 965 阅读 · 0 评论 -
Visual Studio Code 使用总结
1 vscode 如何用chrome 打开前端代码* 1 在市场中下载插件2 手动配置 mac使用 CMD+Shift+P 打开Command Palette. 输入 “ctr” 选择Configure Task Runner命令打开tasks.json. 删除打开的文本内容 输入一下的配置 { "version": "0.1.0", "...原创 2019-12-27 21:25:29 · 899 阅读 · 3 评论 -
Intellj idea 配置 git 时Test 出错 -----完美解决
首先弄清楚Command Line Tools 是什么是Command Line Tools,这两者的关系其实不大,你可以在不安装Xcode的情况下安装Command Line Tools,而安装Xcode的情况是默认安装Command Line Tools 的理解了 Command Line Tools(类似于gcc)就可以了 1 看看自己的电脑有没有安装Command Li...原创 2018-09-29 14:57:12 · 7045 阅读 · 2 评论 -
spring 源码导入到 intellij idea中(操作)
一 准备资源 spring源码 下载地址 https://github.com/spring-projects/spring-framework 下载 gradle 下载地址 https://gradle.org/下载后文件spring-frameworkgradle 二 配置gradle下载完解压到任意目录,我解压在/usr/opt下 ...原创 2019-01-23 22:09:59 · 1149 阅读 · 0 评论