240 发简信
IP属地:广东
  • @HidetadaKomatu
    springboot启动失败
    Description:

    The Bean Validation API is on the classpath but no implementation could be found

    Action:

    Add an implementation, such as Hibernate Validator, to the classpath
    排除cxf-spring-boot-starter-jaxws里的validation-api
    ```
    <dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
    <version>3.2.5</version>
    <exclusions>
    <exclusion>
    <groupId>javax.validation</groupId>
    <artifactId>validation-api</artifactId>
    </exclusion>
    </exclusions>
    </dependency>
    ```

    springboot2.0集成webservice

    1.什么是webservice 简单来说,webservice就是远程调用技术,也叫XML Web Service WebService是一种可以接收从Internet或者I...

  • Springboot整合Shiro:集成Kaptcha验证码

    接上一篇博客 > Springboot整合Shiro:MD5加密方式效果图: (1)pom.xml引入依赖 (2)创建KaptchaConfig.java配置类 (3)Log...

  • 120
    教你 Shiro + SpringBoot 整合 JWT

    本篇文章将教大家在 shiro + springBoot 的基础上整合 JWT (JSON Web Token)如果对 shiro 如何整合 springBoot 还不了解的...