Closed omar-araboghli closed 1 year ago
I tried to cover as much as possible but there are still missing things. Maybe you guys could help.
- I couldn't run the tests in
/ngbatis-demo
due to aorg.nebula.contrib.ngbatis.exception.QueryException
. Is there a certain config I should do when setting up the project ?BeetlTextRenderTest.test2()
is failing with following exception. Any help with that from your side ? I unfortunately couldn't know where that is originating from.java.lang.reflect.InaccessibleObjectException: Unable to make public java.lang.Object java.util.Arrays$ArrayList.get(int) accessible: module java.base does not "opens java.util" to unnamed module @50b494a6
springboot2.x is still supported?
@1244453393, I never tested this but I don't think it's possible. At least without having additional considerations.
@1244453393, I never tested this but I don't think it's possible. At least without having additional considerations.
people who use the springboot2.x are still the majority
people who use the springboot2.x are still the majority
What about maintaining two different releases ? It adds more efforts obviously but how would you else go with this issue internally ?
people who use the springboot2.x are still the majority
What about maintaining two different releases ? It adds more efforts obviously but how would you else go with this issue internally ?
people who use the springboot2.x are still the majority
What about maintaining two different releases ? It adds more efforts obviously but how would you else go with this issue internally ?
there is currently no great solution,but the version transition is not very fast,this gives us ample time to study how to upgrade to the new version!XD
My idea is that a new branch can be created. I'll probably have some time to try on springboot3.x this Wednesday, and then I'll take a look at the problems.
@omar-araboghli
- BeetlTextRenderTest.test2() is failing with following exception. Any help with that from your side ? I unfortunately couldn't know where that is originating from.
I may have found the root cause of the problem.
Run the following code, and the results differ between java8 and java17. This place triggered this equivalent code. Should the difference be in the handling of access permissions for private static internal classes in JDK?
Class.forName("java.util.Arrays$ArrayList").getMethod("get", int.class).setAccessible(true);
The param can't use Arrays.asList("name")
;
This is a problem with the test case itself
Closes #216
I tried to cover as much as possible but there are still missing things. Maybe you guys could help.
/ngbatis-demo
due to aorg.nebula.contrib.ngbatis.exception.QueryException
. Is there a certain config I should do when setting up the project ?BeetlTextRenderTest.test2()
is failing with following exception. Any help with that from your side ? I unfortunately couldn't know where that is originating from.