idea
gao_jun1
这个作者很懒,什么都没留下…
展开
-
idea中配置项目的运行内存大小
一、Java idea中配置项目的运行内存大小参数描述-Xms1024m //设置运行内存的最小值为1024m-Xmx2048m //设置运行内存的最大值为2048m-Xmn512m //设置新生代大小-XX:MetaspaceSize=256m //设置初始Metaspace空间的大小例如:(可根据自己所需的大小进行设定)-Xms200m -Xmx400m -XX:+HeapDumpOnOutOfMemoryError第一步,找到Edit Configurations.原创 2020-12-26 15:54:19 · 17158 阅读 · 0 评论 -
Http Status 400:Required Long parameter ‘catId‘ is not present的问题解决
一、问题描述在浏览器中根据访问路径进行访问时,浏览器报出 400 的错误,同时,控制台打印出 Required Long parameter ‘catId’ is not present。controller下的路径地址及方法:二、解决办法使用@RequestParam注解时,需要指定一个默认值,否则,在id不存在的情况下就会报错。@RequestParam分别有如下三个属性:(1) value 请求参数的参数名,作为参数映射名称;(2) required 该参数是否必填,默认为tr.原创 2020-12-23 15:36:33 · 2448 阅读 · 0 评论 -
idea报错:Module xxx is imported from Maven.Any changes made in its ......
一、问题描述二、报错原因分析报错Moudle的编译JDK版本和项目使用的jdk版本不一致。此时应查看idea设置的jdk版本和项目中各模块设置使用的jdk版本三、解决办法1、File -->Setting --> Java Compile,查看各模块的jdk版本2、File --> Project Structure,查看项目的jdk版本3、添加pom.xml文件配置,配置如下:<build> <plugins> .原创 2020-12-17 15:34:05 · 6292 阅读 · 1 评论 -
idea2019.3设置Run Dashboard
IDEA2019版本的Dashboard变成了Service,所以在设置的时候需要注意。在微服务的工程项目中,当开发的模块较多时,推荐使用Run Dashboard进行管理。但是在新建的过程项目中,还没有Run Dashboard组件,需要在工程目录下找.idea文件夹下的workspace.xml,在其中增加如下组件:注意:在添加的时候,注意放置的位置,不能存放于其他组件的component中。<component name="RunDashboard"> <op.原创 2020-12-17 09:58:06 · 638 阅读 · 0 评论 -
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @Context
一、问题描述在进行单元测试的时候报出下面的错误java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @Context二、解决办法出现这个问题的原因有两个1、看有没有主启动类2、如上图所示,主启动类已经存在了,那错误就有可能处在test目录下,当他们不在同一个目录下时,就会报出上面的错误。将其放在同一个目录下,问题就解决了。...原创 2020-12-16 19:07:21 · 277 阅读 · 0 评论 -
idea报错:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-co
一、错误描述在使用maven工具进行项目打包时,报出了下面的错误:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project cloud-api-commons: Fatal error compiling二、解决办法我的jdk是1.8,下面以jdk1.8进行讲解首先,我创建的是一个springboot项目,一个父工程中包含.原创 2020-11-23 15:32:31 · 148728 阅读 · 26 评论 -
idea报错:springboot项目启动报错SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“.
一、错误日志错误的第一行即为:SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”.SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".SLF4J: Defaulting to no-operation (NOP) logger implementationSLF4J: See http://www.slf4j.org/codes.html#St.原创 2020-11-10 21:34:58 · 4298 阅读 · 0 评论 -
idea设置:将普通文件夹设置为resourses资源文件夹或者java代码根目录文件夹
如下图所示的resources文件夹不是一个资源文件夹,所以无法读取文件夹下配置文件的内容,配置文件也无法生效。具体操作如下:选中resources文件夹 => 右键 => 选择Mark Directory as => 点击Resources Root注意:Sources Root表示设置为Java的根目录文件夹设置完成之后的文件夹状态如下所示:...原创 2020-10-10 15:32:26 · 9529 阅读 · 1 评论 -
idea设置:idea显示生成的target文件夹
idea显示生成的target文件夹原创 2020-10-09 17:50:36 · 5705 阅读 · 1 评论 -
idea报错:Cannot download ‘https://start.spring.io‘: connect timed out
一、报错问题描述Error message:Cannot download ‘https://start.spring.io’: connect timed out二、解决方法第一种解决方法:添加aliyun地址,将默认的地址更改为aliyun地址原创 2020-09-11 18:37:08 · 17862 阅读 · 1 评论 -
idea创建SpringBoot项目报错:Artifact contains illegal characters.
一、问题描述翻译过来大概的意思就是,项目命名的时候,不能出现大小写混合使用,此时将大写去掉,加上下划线或者改为小写字母即可。原创 2020-09-03 10:24:43 · 252 阅读 · 0 评论 -
idea报错:java.sql.SQLException: The server time zone value ‘�й���ʱ��‘ is unrecognized or represents m
一、报错问题描述今天用spring boot新建了一个项目,在配置连接数据库时,出现了下面的错误。java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the 'serverTimezone' configur.原创 2020-09-01 18:03:00 · 332 阅读 · 0 评论 -
idea报错:无效的源发行版12
一、问题描述使用idea运行项目的时候,报出错误:无效的源发行版:XXX,这是因为idea设置的jdk版本和运行的项目版本的jdk版本号不匹配。如果项目jdk版本是12,idea环境设置的jdk版本为1.8,就会报错。二、解决方法...原创 2020-08-31 18:50:14 · 1815 阅读 · 0 评论 -
idea报错:Module xxx is imported from Maven.Any changes made in its configuration may be lost after...
一、问题描述在配置idea的jMoude的jdk版本时,报出:Module xxx is imported from Maven.Any changes made in its configuration may be lost after reimporting.的错误二、原因分析配置的Moudel的jdk版本和项目默认使用的jdk版本不一致。。。三、解决方案第一种解决方案:修改java默认编译的版本方法步骤:【File】—> 【Settings】—> 【Buil.原创 2020-08-31 18:49:31 · 11303 阅读 · 3 评论 -
idea连接MySQL数据库报错:[08001] Could not create connection to database server. Attempted reconnect 3 times
一、问题描述今天在使用idea连接mysql数据库的时候出现了如下问题第一个问题:[08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.第二个问题:com.mysql.cj.exceptions.WrongArgumentException: No timezone mapping entry for ‘HongKong’.经查看MySQL数据库控制台没有问题,.原创 2020-08-25 13:01:15 · 26153 阅读 · 5 评论 -
idea:使用idea连接mysql数据库
一、首先确保数据库服务是打开的命令行窗口和任务管理器均可查看命令行窗口查看在命令行窗口输入mysql(有密码的需要输入密码,我的密码为空,所以不用输入)在任务管理器查看打开任务管理器,查看服务选项,看MySQL服务是否开启二、根据以下操作即可实现1、找到idea中MySQL数据库的连接方式第一步,找到Database第二步,点击"+"第三步,点击Data Source第四步,点击MySQL2、配置连接在第一次使用的时候,除了要配置连接,还要配置相应的驱动,.原创 2020-08-25 09:15:19 · 31006 阅读 · 5 评论 -
idea的设置:如何将包的层级目录显示出来(即树状结构)
一、让包的目录呈树状结构显示出来找到Compact Middle Packages,将前面的勾选去掉即可去掉之后,包名的树状结构就显示出来了 !!!二、将类或接口的方法在项目结构中显示出来找到Show Members,点击勾选,然后就可以看到类或者接口的方法在项目目录中显示出来了...原创 2020-08-23 14:45:44 · 12193 阅读 · 0 评论 -
Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syn
一、报错问题描述今天在学习mybatis的动态sql时遇到了这个问题动态的sql语句:错误描述:Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use ne.原创 2020-08-23 10:41:41 · 3385 阅读 · 0 评论 -
Mybatis项目报错:Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuratio
一、问题描述java.lang.ExceptionInInitializerError at MyTest.addBlogTest(MyTest.java:20) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.Delegati.原创 2020-08-22 17:56:21 · 2929 阅读 · 0 评论 -
idea在创建类时,在文件头自动添加作者和创建时间
一、在类的文件头注释主要路径:File —> Settings —> Editor —> File and Code Templates —> include—>FileHeader第一步,点击右上角的file,找到Settings,点击进入第二步,选择Editor,找到File and Code Template,点击includes,然后点击FileHeader第三步,在右边的空白框中进行定义注意:DATE和TIME需要大写第四步,去.原创 2020-08-21 09:18:53 · 477 阅读 · 0 评论 -
idea:Cause: java.sql.SQLException: Parameter index out of range (2 > number of parameters, which is1
问题描述:org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMapping{property='id', mode=IN, javaType=class java.lang.Integer, jdbcType.原创 2020-08-19 22:11:37 · 574 阅读 · 0 评论 -
idea:Server returns invalid timezone. Go to ‘Advanced‘ tab and set ‘serverTimezone‘ property manuall
问题描述:用idea连接MySQL数据库时连接无效,并报错Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually..解决方法:在Advanced中将serverTimezone设置成Hongkong即可最后进行测试连接:(连接成功)...原创 2020-08-19 15:42:22 · 190 阅读 · 0 评论 -
idea问题解决:Windows Defender might be impacting your build performance.
今天升级了idea的版本,然后打开运行项目的时候就出现这个警告Windows Defender might be impacting your build performance. IntelliJ IDEA checked the following directories:解决办法:Windows10:点击开始按钮 ——> 输入病毒和威胁防护 ——> “点击病毒和威胁防护”设置下管理设置 ——> 在排除项中,点击添加或删除排除项——>点击添加排除项,选择文件夹,将警告中原创 2020-08-11 20:36:39 · 7238 阅读 · 0 评论