You are using a one way mapping here:
@ManyToOne
@JoinColumn(name="user_id")
private Users user;
But you are missing the mapping from user to Blog: the Users.java should have:(a user has many blogs)
@OneToMany(mappedby="user_id")
private List<Blog> blogs;