@Autowired in Spring自定义转换器

时间:2013-05-15 03:45:03

标签: java spring spring-mvc

我有自定义转换器:

  @Component
public class RoleConverter implements Converter<String, Role> {

    @Autowired private Roles roles;

    @Override
    public Role convert(String id) {
        return roles.findById(Long.parseLong(id));
    }
}

但@Autowired正在设置空值。导致Nullpointerexception

这是Roles类:

@Repository
@Transactional
public class Roles extends Domain<Role>{

    public Roles() {
        super(Role.class);
    }

}

我正在使用Java配置。转换器已注册:

@Configuration
@EnableWebMvc
//other annotations...
public class WebappConfig extends WebMvcConfigurerAdapter {
//....


    @Override
    public void addFormatters(FormatterRegistry registry) {
        registry.addConverter(new RoleConverter());
        super.addFormatters(registry);
    }


/....

}

当@Autowired Roles在控制器中工作时。

为什么@Autowired在Converter中设置为null?

1 个答案:

答案 0 :(得分:4)

因为你在这里创建一个RoleConverter的新对象。相反,您应该自动装配RoleConverter

registry.addConverter(new RoleConverter());