When git uploads a project, it keeps reporting a file without adding any content (git pulls up other people’s projects and uploads them to their own warehouse/error: failed to push some refs to https://gitee.com/)

Blog homepage: Breaking the waves and moving forward Series of columns: Vue, React, PHP Thank you everyone for likingfavorites?comments Table of Contents Two methods: 1: Forced upload can be used 2: Delete other people’s .git files, because someone else has configured the remote address of git, and if you pull it locally together, he does […]

Explore Allure Report: the secret weapon to improve automated testing efficiency

1. Use Allure2 running mode-Python # –alluredir parameter generates test report. # Collect results during test execution pytest [test case/module/package] –alluredir=./result/ (the –alluredir option is used to specify the path to store test results) # Generate online test report allure serve ./result 2. Use Allure2 running mode-Java 1. Use the allure:report parameter to generate a […]

[OpenCV’s color image segmentation technology based on HSV space reports an error: ValueError: the input array must be have a shape =]= (.., ..,[ ..,]

Article directory summary Image segmentation concept Segment blue target Split yellow target Split orange target Split green target summary Summary Whenever you see an image, it is usually made up of various elements and objects. In some cases, you may want to extract a specific object from an image. What do you do? The first […]

If the new Feign interface is started according to the microservice, an error will be reported: org.springframework.beans.factory.UnsatisfiedDependencyException:

Startup error: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name ‘jgEntInfoController’: Unsatisfied dependency expressed through field ‘remoteJgEntInfoService’; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘ com.supervise.system.api.RemoteJgEntInfoService’: Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: No fallbackFactory instance of type class com.supervise.system.api.factory.RemoteJgEntInfoFallbackFactory found for feign client remoteJgEntInfoService question: rg.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean named ‘jgEntInfoController’: Dependency […]

Analysis from the source code perspective: Why an exception is reported when deleting data in a Java loop

1. Analysis from the source code perspective: Why an exception is reported when deleting data in a Java loop I believe everyone has more or less known that deleting data in enhanced for in Java will throw: java.util.ConcurrentModificationException exception, For example: The program is as follows: public class RmTest {<!– –> public static void main(String[] […]

uglifyjs is not used, but UglifyJs error is reported when packaging; Unexpected token: name (raf) [main_25188b.js:121200,4]

Article directory background: Troubleshoot the error locally The local project package.json does not have UglifyJs dependencies installed. It is speculated that one of the dependencies of a plug-in itself contains UglifyJs UglifyJs errors can be solved by compiling with babel and converting es6 to es5. Change the configuration of babel-loader from exclude to include to […]

Solve the problem that mybatisplus reported org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.excep

Solution to mybatisplus reporting org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: Article directory Solve the problem that mybatisplus reported org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException: Scenes: Exception details: Solution analyze 1. View logs 2. View the source code Summarize use mybatisplus LambdaQueryChainWrapper reported an error Scene: RegionPO one = new LambdaQueryChainWrapper<>(regionDAO) .select(RegionPO::getRegionId) .eq(RegionPO::getName, “Guangdong Province”) .one(); Exception details: […]

Explore Allure Report: the secret weapon to improve automated testing efficiency

1. Use Allure2 running mode-Python # –alluredir parameter generates test report. # Collect results during test execution pytest [test case/module/package] –alluredir=./result/ (the –alluredir option is used to specify the path to store test results) # Generate online test report allure serve ./result 2. Use Allure2 running mode-Java 1. Use the allure:report parameter to generate a […]