Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException哪位大佬可以帮助解决一下这个啊,网上找了好久也没有解决,几天了,不能再拖了

小白一个
公司发来的项目,jeeplus开发平台,在表单配置上连接数据库出现这样的界面图片说明
搜了好多文章也没有解决,那位大佬可以教教我么
错误ru'xia
Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException

尝试导入这几个依赖试试看

<dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <version>2.3.0</version>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
            <version>2.3.0</version>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-core</artifactId>
            <version>2.3.0</version>
        </dependency>
        <dependency>
            <groupId>javax.activation</groupId>
            <artifactId>activation</artifactId>
            <version>1.1.1</version>
        </dependency>

请导入
javax.xml.bind

       com.sun.xml.bind

       com.sun.xml.bind

       javax.activation

https://blog.csdn.net/weixin_30835649/article/details/98104824