所有分类
  • 所有分类
  • 未分类

Intellij IDEA-问题解决-杂项

简介

本文介绍Idea中常见的一些问题。

Reading pom.xml

更新了Idea版本到2020.2.3之后,再次打开项目就停在这里:Reading xxx pom.xml。

解决方法

关闭Idea=> 删掉项目路径下的.idea文件夹=> 以pom.xml打开项目

运行时在单元测试失败(找不到符号)

第一步:删除.idea文件夹、项目名.iml

第二步:重新导入项目(通过目录打开,而不是以前记住的项目)

同样的程序,其中一个失败

复现

有两个工程,test_maven和test_ES,里边的程序及配置一模一样,但test_maven成功,test_ES报异常:Caused by: java.lang.ClassNotFoundException: org.elasticsearch.index.query.QueryBuilder

排查过程

1. 使用BeyondCompare比较,发现部署的xml文件不同:

test_maven的test_maven_war_exploded.xml:

test_ES的test_ES_war_exploded.xml:

可见差别:ES的没有相关库。

2.重新部署

File=> Project Structure=> Project Settings=> Artifacts=> 中间“+”号=> 选择默认的模块=> Apply

经试验,还是报错

3.重新配置Tomcat

Run=> Edit Configurations=> 删除原有Tomcat=> 中间“+”号=> Tomcat Server=> Local=> …
详见:Tomcat-安装与使用 – 自学精灵 

Gradle项目缓存问题

 错误日志

2020-08-18 09:28:27.154  INFO [-,,,] 4940 --- [           main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://localhost:8888
2020-08-18 09:28:29.244  INFO [-,,,] 4940 --- [           main] c.c.c.ConfigServicePropertySourceLocator : Connect Timeout Exception on Url - http://localhost:8888. Will be trying the next url if available
...
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.application.name' in value "${spring.application.name}"

 解决方法

启动突然报错

配置的bootstrap如下:

spring:
  application:
    name: product
  # 配置中心
  cloud:
    config:
      fail-fast: true
      name: ${spring.application.name}
#      profile: ${spring.profiles.active}
      discovery:
        enabled: true
        service-id: config
#  profiles:
#    active: dev

# 注册中心配置
eureka:
  instance:
    prefer-ip-address: true
  client:
    service-url:
      defaultZone: http://192.168.1.123:8765/eureka/

按理应该会到http://192.168.123:xxx(配置中心微服务)去获取配置,但启动时却发现:
Fetching config from server at : http://localhost:8888 

目前未确定问题,尝试删除.idea/workspace.xml。

打包:already exists in vfs

解决方法:需要删除原来的META-INF,原先的META-INF所在目录在Directory for META-INF/MANIFEST.MF下 ​

0

评论0

请先

显示验证码
没有账号?注册  忘记密码?

社交账号快速登录