ylbtech-Java-Class-@I:org.springframework.validation.annotation.Validated 1.返回顶部   2.返回顶部 1. package com.ylbtech.api.controller.operation; import cn.hutool.core.date.DateUtil; import com.ylbtech.api.core.response.Result; import com.ylbtech.api.core.r…
org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'configController' for bean class [net.mingyang.modules.system.ConfigController] conflicts with existing, non-compatible bean definition of same…
1.遇到的问题: 今天在弄spring整合mybatis的时候遇到一个小问题,如图所示: 简单来说:就是我的spring的xml文件没找到,我就奇了怪了,我所有的配置都没问题啊! 我pom.xml配置是这样的: 我spring的xml文件中是这样的: 但是结果就是显示前面的错误 最后去折腾了一下,才反应过来: 我的spring的版本问题,由于我这里是直接用的父项目里面中spring的jar包,所以就没注意到,然后我回头去看了一下,果然不出老衲所料: 问题就出在这个spring的版本这里,然后我改…
ylbtech-Java-Class-@I:org.springframework.web.bind.annotation.PostMapping 1.返回顶部   2.返回顶部 1. package com.ylbtech.api.controller.operation; import cn.hutool.core.date.DateUtil; import com.ylbtech.api.core.response.Result; import com.ylbtech.api.core.r…
ylbtech-Java-Class-@I:org.springframework.web.bind.annotation.RestController 1.返回顶部   2.返回顶部 1. package com.ylbtech.api.controller.operation; import cn.hutool.core.date.DateUtil; import com.ylbtech.api.core.response.Result; import com.ylbtech.api.cor…
ylbtech-Java-Class-@I:org.springframework.web.bind.annotation.RequestMapping 1.返回顶部   2.返回顶部 1. package com.ylbtech.api.controller.operation; import cn.hutool.core.date.DateUtil; import com.ylbtech.api.core.response.Result; import com.ylbtech.api.cor…
ylbtech-Java-Class-@I:org.springframework.web.bind.annotation.RequestBody 1.返回顶部   2.返回顶部 1. package com.ylbtech.api.controller.operation; import cn.hutool.core.date.DateUtil; import com.ylbtech.api.core.response.Result; import com.ylbtech.api.core.r…
2021.2.24 更新 1 概述 本文主要讲述了如何使用Hibernate Validator以及@Valid/@Validate注解. 2 校验 对于一个普通的Spring Boot应用,经常可以在业务层看到以下类似的操作: if(id == null) {...} if(username == null) {...} if(password == null) {...} 这是很正常的,但是会显得代码很繁琐,一个更好的做法就是使用Hibernate Validator. 3 Hibernat…
报错内容:org.springframework.validation.BeanPropertyBindingResult: 1 errors Field error in object 'price' on field 'endTime': rejected value [2018-07-31]; codes [typeMismatch.price.endTime,typeMismatch.endTime,typeMismatch.java.util.Date,typeMismatch]; a…
我使用的是SSM框架,是在编写测试RESTFUL接口的时候出现, @RequestMapping(value = "/selectAll", method = RequestMethod.GET) @ResponseBody public ResponseEntity<List<User>> selectAll() { List<User> users = this.userService.selectAll(); if (null != users…