SpringBoot: Как правильно обрабатывать эту ошибку связывания? - PullRequest
0 голосов
/ 08 апреля 2020

Я надеюсь, что вы можете мне помочь .. У меня есть приложение с пружинной загрузкой, которое загружает в папку несколько jar-файлов (с классом и методом с аннотацией @Test или @TestFactory) и загружает в jar-файл JSON all имя-класс имя-метод Test имя. Когда я вызываю сервис get /getTestList, я вижу это json следующим образом, например:

{jarFile: {classFileName: {methodTestName1: "xxxx", methodTestName2: "yyy"}, { classFileName2: {methodTestName1: "xxxx", methodTestName2: "yyy"}}

Это Controller.class:

 @RestController
public class Controller {
public JarClassMethod getAllTests() throws IllegalArgumentException,  NoSuchMethodException, 
InvocationTargetException, IllegalAccessException, IOException,LinkageError, ClassNotFoundException {

    JarClassMethod testClassObjMap= new JarClassMethod();
    LoadLibrary loadLibrary=new LoadLibrary();
    List<JarFile> jarList= loadLibrary.getListJar().stream().map(f -> {
        try {
            return new JarFile(f);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    })
        .collect(Collectors.toList());

    for (JarFile j : jarList) {
        for (Enumeration<JarEntry> entries = j.entries(); entries.hasMoreElements(); ) {
            JarEntry entry = entries.nextElement();
            String file = entry.getName();
            if (file.endsWith(".class")) {
                String classname = file.replaceAll("/", ".")
                        .substring(0, file.lastIndexOf("."));
                try {
                    Class<?> currentClass = Class.forName(classname);
                    List<String> testMethods = new ArrayList<>();
                    for (int i = 0; i < currentClass.getMethods().length; i++) {
                        Method method = currentClass.getMethods()[i];
                        Annotation annTest = method.getAnnotation(Test.class);
                        Annotation annTestFactory = method.getAnnotation(TestFactory.class);
                        if (annTest != null || annTestFactory != null) {
                            testMethods.add(method.getName());
                        }
                    }//fine for metodi
                    if (testMethods.size() >=1) {
                        testClassObjMap.put(j.getName().substring(j.getName().lastIndexOf("\\")+1),classname,testMethods);
                        System.out.format("%s %s %s",j.toString(),classname,testMethods);
                    }
                }catch (NoClassDefFoundError e) {
                    System.out.println("WARNING: failed NoClassDefFoundError " + classname + " from " + file);
                } 
                catch (Throwable e) {
                    System.out.println("WARNING: failed to instantiate " + classname + " from " + file);
                }

            }//if .class
        }//chiudo jarentry for
    }//chiudo jarfile for
    return testClassObjMap;
}

@ResponseStatus(value = HttpStatus.OK)
@RequestMapping(value = "/getTestList", method = RequestMethod.GET)
public ResponseEntity<JarClassMethod> getTestList() throws IOException, ClassNotFoundException, NoSuchMethodException, IllegalAccessException, InvocationTargetException {
    JarClassMethod testClassObjMap=this.getAllTests();
    return new ResponseEntity<>(testClassObjMap, HttpStatus.OK);
}

с методом getAllTests() Я сначала загружаю банку как внешние библиотеки и после с для для итерации всех jarsFile, с другим для итерации всех классов и, наконец, с другим для итерации всего метода с аннотацией @Test или @TestFactory.

на моем p c в windows это работает правильно, но когда я упаковываю проект и помещаю этот jar на Linux сервер, у меня появляется эта ошибка:

        There was an unexpected error (type=Internal Server Error, status=500).
    loader constraint violation: when resolving method
 "com.fasterxml.jackson.databind.ser.impl.ReadOnlyClassToSerializerMap.untypedValueSerializer(Ljava/lang/Class;)Lcom/fasterxml/jackson/databind/JsonSerializer;" the class loader (instance of 
org/springframework/boot/loader/LaunchedURLClassLoader) of the current class, 
com/fasterxml/jackson/databind/SerializerProvider, and the class loader (instance of 
sun/misc/Launcher$AppClassLoader) for the method's defining class, 
com/fasterxml/jackson/databind/ser/impl/ReadOnlyClassToSerializerMap, have different Class objects for 
the type com/fasterxml/jackson/databind/JsonSerializer used in the signature

Я пытался исключить Джексона из зависимости при загрузке, но отклик getTestList() не не работает В других файлах Jars также использовались библиотеки Джексона.

это мой пом. xml: пом xml

Просьба помочь мне .. Я устал от 3 дня. :-P Спасибо и

С уважением Друзья ..

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...