当前位置: 首页 > article >正文

记录一次很坑的报错:java.lang.Exception: The class is not public.

文章目录

    • 1、Docker中运行的服务
    • 2、遇到问题
      • 第一个问题是项目直接启动失败?
      • 第二个问题是项目启动后获取不到注入的bean?
      • 第三个问题就是测试单元的引入问题?
      • 第四个问题就是公共类和方法?
    • 3、这里是完整的代码部分(正确)
    • 4、成功测试通过

三连哦

前言
在进行单元测试连接虚拟机中的 elasticsearch,出现了一堆小问题,前前后后花了我一个多小时

1、Docker中运行的服务

在这里插入图片描述

2、遇到问题

原因各有千秋,这里只给出我遇到的情况

第一个问题是项目直接启动失败?

原因:springboot的版本和springcloud的版本不一致导致
在这里插入图片描述

第二个问题是项目启动后获取不到注入的bean?

需要添加这个注解:@RunWith(SpringRunner.class)

第三个问题就是测试单元的引入问题?

//注释掉import org.junit.jupiter.api.Test; 使用下面这句
import org.junit.Test;

第四个问题就是公共类和方法?

要在类上和方法上添加public

3、这里是完整的代码部分(正确)

package com.atguigu.gulimall.search;


import com.alibaba.fastjson.JSON;
import com.atguigu.gulimall.search.config.GulimallElasticSearchConfig;
import lombok.Data;
import org.elasticsearch.action.index.IndexRequest;
import org.elasticsearch.action.index.IndexResponse;
import org.elasticsearch.client.RestHighLevelClient;
import org.elasticsearch.common.xcontent.XContentType;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import java.io.IOException;

@RunWith(SpringRunner.class)
@SpringBootTest
public class GulimallSearchApplicationTests {

    @Autowired
    private RestHighLevelClient client;

    @Test
    public void indexData() throws IOException {
        IndexRequest indexRequest = new IndexRequest("users");
        indexRequest.id("id");
        User user = new User();
        user.setUserName("lisi");
        user.setAge(18);
        user.setGender("男");
        String jsonString = JSON.toJSONString(user);
        indexRequest.source(jsonString, XContentType.JSON);

        //执行
      IndexResponse index = client.index(indexRequest, GulimallElasticSearchConfig.COMMON_OPTIONS);

      //提取
        System.out.println(index);


    }

    @Data
    class User{
        private String userName;
        private String gender;
        private Integer age;

    }

    @Test
    public void contextLoads() {
        System.out.println(client);
    }

}

4、成功测试通过

在这里插入图片描述
在这里插入图片描述


http://www.kler.cn/a/2294.html

相关文章:

  • 知识图谱6:neo4j查询语句
  • Android中桌面小部件的开发流程及常见问题和解决方案
  • 32位、64位、x86与x64:深入解析计算机架构
  • ctfshow-web入门-SSTI(web361-web368)上
  • HarmonyOS Next星河版笔记--界面开发(4)
  • Chrome使用IE内核
  • 【沐风老师】3DMAX交通流插件TrafficFlow使用方法详解
  • albedo开源框架配置多数据源
  • 乐观锁和悲观锁 面试题
  • vue使用split()将字符串分割数组join()将数组转字符串reverse()将数组反转
  • Linux 总结9个最危险的命令,一定要牢记在心!
  • 通过DNS数据包解释DNS协议各个字段含义
  • Java中 ==和equals的区别是什么?
  • 流量分析-Wireshark -操作手册(不能说最全,只能说更全)
  • Golang每日一练(leetDay0012)
  • 让项目干系人满意的3大要点
  • list底层的简单实现(万字长文详解!)
  • 今天,我终于学懂了C++中的引用
  • 全网最全面,python自动化测试持续邮件集成,一步步详解......
  • 【Python_requests学习笔记(六)】基于requests模块构建免费代理IP池
  • 程序员的代码行数越少越好?
  • 【STL四】序列容器——vector容器
  • 【2023.3.18 美团校招】
  • 微前端(无界)
  • 今天面试了一个2年Java经验的
  • Selenium基础篇之不打开浏览器运行