嗨,我对android开发非常陌生,目前在我的第一个android应用项目中工作。我想将Web内容加载到应用程序中并将内容存储为字符串。我尝试使用AsyncTask使用httpGet,但是布尔doInBackground函数始终返回false。我找不到原因。有人可以帮我吗?谢谢!
@Override
@Transactional
public <S extends Entity> S save(S entity) {
EntityManager cleanEM = entityManager.getEntityManagerFactory().createEntityManager();
JPAQuery<AccessControl> query = new JPAQuery<AccessControl>(cleanEM);
//here do what I need with the query which can retrieve all old values
cleanEM.close();
return super.save(entity);
}