- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试设置 Spring Data/JPA DomainClassConverter 以自动将(字符串)id 转换为域类本身。
我的项目使用 Java Config(所以没有 xml)。
在我的 WebConfig 中,我目前有:
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addFormatters(FormatterRegistry registry) {
registry.addConverter(new DomainClassConverter<DefaultFormattingConversionService>((DefaultFormattingConversionService) registry));
}
}
ConversionService converters =
..<default converters>..
org.springframework.data.repository.support.DomainClassConverter@6ea4ce0d, org.springframework.core.convert.support.IdToEntityConverter@5d3f03b, org.springframework.core.convert.support.ObjectToObjectConverter@1d40b47a
Failed to convert property value of type java.lang.String to required type org.mycomp.domain.Customer for property customer; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [org.mycomp.domain.Customer] for property customer: no matching editors or conversion strategy found
最佳答案
DomainClassConverter
应该声明为一个 bean(因为它是 ApplicationContextAware
),并且它在 ConversionService
中注册自己自动,所以你不需要手动注册:
@Bean @Autowired
public DomainClassConverter domainClassConverter(ConversionService cs) {
return new DomainClassConverter(cs);
}
关于Spring Data DomainClassConverter 不起作用(与 Java Config 结合使用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12421485/
我有一个非常简单的 Spring Boot MVC 项目,我在其中尝试使用 DomainClassConverter 直接加载实体。但似乎没有找到 DomainClassConverter。访问 'l
我有一个 SQL 数据库,其中主键是 UUID,但 UUID 的规范字符串表示形式非常长,我想在 URL 中使用缩短版本 (Base58)。 Spring Data 的 DomainClassConv
我热衷于干净、隔离良好的单元测试。但我在这里偶然发现了“干净”的部分,用于测试使用DomainClassConverter功能来获取实体作为其映射方法的参数的 Controller 。 @Entity
我正在尝试为 Controller 中定义的方法编写单元测试代码。方法是这样的: @RestController @RequestMapping("/products") public class R
我正在尝试设置 Spring Data/JPA DomainClassConverter 以自动将(字符串)id 转换为域类本身。 我的项目使用 Java Config(所以没有 xml)。 在我的
我正在使用 Spring MVC 和 Spring Data,并且还配置了 Spring Data 的 DomainClassConverter自动将 String id 转换为适当的域类。 我现在正
我正在尝试在我的 Spring MVC 项目中使用 Spring 的 DomainClassConverter 功能。 (我只有非常基本的 Spring MVC 和 Spring 知识,对于这里的任何
我是一名优秀的程序员,十分优秀!