io.beanmapper.spring.web.mockmvc.MockEntityConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beanmapper-spring Show documentation
Show all versions of beanmapper-spring Show documentation
Spring support for the Bean Mapper
package io.beanmapper.spring.web.mockmvc;
import org.springframework.core.convert.converter.Converter;
import org.springframework.data.domain.Persistable;
import org.springframework.data.repository.CrudRepository;
public class MockEntityConverter implements Converter {
private final CrudRepository repository;
public MockEntityConverter(CrudRepository respository) {
this.repository = respository;
}
@Override
public T convert(String id) {
return repository.findOne(Long.valueOf(id));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy