带有瞬态字段的Spring-boot + Hibernate + JPA

时间:2015-10-28 14:13:07

标签: java spring hibernate jpa netbeans

这是我的第一个问题,但我一直在寻找解决方案2天,但没有成功。 在我的项目中,我有一个具有瞬态属性的User实体:

@Transient
@JsonProperty
private List<String> files;

我没有制定者,而getter是:

public List<String> getFiles() {
    /* Call one static method */
}

在调试中使用NetBeans执行应用程序,工作正常,从javascript,我可以使用user.fotos获取getFiles结果。但是当我生成.jar文件,并使用命令java -jar app.jar执行应用程序时,通过调用一个必须返回一个User对象的Rest函数,我得到了这个异常:

2015-10-28 14:39:35.963  WARN 27836 --- [nio-7777-exec-1] .w.s.m.s.DefaultHandlerExceptionResolver : Failed to write HTTP message: org.springframework.http.converter.HttpMessageNotWritableException: Could not write content: (was java.lang.NullPointerException) (through reference chain: com.pfc.soriano.wsdbmodel.entity.User["files"]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: (was java.lang.NullPointerException) (through reference chain: com.pfc.soriano.wsdbmodel.entity.User["files"])
2015-10-28 14:39:35.963  WARN 27836 --- [nio-7777-exec-1] .w.s.m.s.DefaultHandlerExceptionResolver : Handler execution resulted in exception: Could not write content: (was java.lang.NullPointerException) (through reference chain: com.pfc.soriano.wsdbmodel.entity.User["files"]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: (was java.lang.NullPointerException) (through reference chain: com.pfc.soriano.wsdbmodel.entity.User["files"])

我的问题是:Netbeans与命令行java -jar有什么不同,这使得它工作正常?

1 个答案:

答案 0 :(得分:1)

尝试更多地找到一些文档,我发现了这个:JPA Transient Annotation and JSON

感谢Damien,最后我的项目工作正常: 主要Application.java:

@SpringBootApplication
public class Application extends WebMvcConfigurerAdapter {

    /* Here we register the Hibernate4Module into an ObjectMapper, then set this custom-configured ObjectMapper
     * to the MessageConverter and return it to be added to the HttpMessageConverters of our application*/
    public MappingJackson2HttpMessageConverter jacksonMessageConverter() {
        MappingJackson2HttpMessageConverter messageConverter = new MappingJackson2HttpMessageConverter();

        ObjectMapper mapper = new ObjectMapper();
        Hibernate4Module hm = new Hibernate4Module();
        hm.disable(Hibernate4Module.Feature.USE_TRANSIENT_ANNOTATION);
        mapper.registerModule(hm);

        messageConverter.setObjectMapper(mapper);
        return messageConverter;
    }

    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        converters.add(jacksonMessageConverter());
        super.configureMessageConverters(converters);
    }

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

用户实体类:

@Entity
@Table(name = "user")
public class User implements Serializable {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Basic(optional = false)
    @Column(name = "ID")
    private Long id;
    @Transient
    Collection<String> files;

    public Long getId() {
        files = Utils.getImages("" + id, "src/main/webapp/user/");
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Collection<String> getFiles() {
        return files;
    }

    public void setFiles(Collection<String> files) {
        this.files = files;
    }
}

UserDAO界面:

@RepositoryRestResource(collectionResourceRel = "users", itemResourceRel = "users")
public interface UserDAO extends JpaRepository<User, Long> {

}

UserController中:

@Controller
@RequestMapping(value = "user")
public class UserController {

    @Autowired
    UserDAO userDAO;

    @RequestMapping(value = "findById", method = RequestMethod.POST)
    @ResponseBody
    public User findById(@Param("id") Long id) {
        return userDAO.findOne(id);
    }
}

Javascript功能:

function loadUser(id) {
    $.ajax({
        type: "POST",
        url: serviceBaseUrl + "user/findById",
        data: {id: id},
        contentType: "application/x-www-form-urlencoded; charset=UTF-8",
        success: function (data, textStatus, jqXHR) {
            if(data) {
                alert(data.files);
                /* DO SOMETHING ELSE */
            }
        },
        error: function (jqXHR, textStatus, errorThrown) {
            console.log(jqXHR.responseJSON.message);
        }
    });
}

结果是javascript向我显示了一个警告,其中包含服务器上存在的文件名。

相关问题