使用Spring JPA

时间:2015-06-26 00:12:22

标签: java spring hibernate spring-data

我似乎无法让我的Spring JPA配置正常工作。我有一个Spring REST服务。如果我将所有实体设置为 FetchType.EAGER ,一切都按预期工作。但出于显而易见的原因,我不想这样做。

当我将实体设置为 FetchType.LAZY 时,我收到以下错误:

  

org.hibernate.LazyInitializationException:懒得初始化   角色集合:com.service.entities.MyEntity.lawfirmCaseDecisions,   无法初始化代理 - 没有会话

我已经查看了其他类似的SO问题,但我仍然遇到同样的问题。这是我的配置:

@Configuration
@Import(EnvironmentProvider.class)
@EnableTransactionManagement
@Slf4j
public class DataSourceProvider {

    @Autowired EnvironmentProvider envProvider;

    @Bean
    DataSource dataSource() {

        final EnvConfig env = envProvider.envConfig();

        MysqlDataSource dataSource = new MysqlDataSource();    
        dataSource.setUrl(env.findProperty("db.url"));
        dataSource.setPortNumber( Integer.parseInt(env.findProperty("db.port")) );
        dataSource.setUser(env.findProperty("db.username"));
        dataSource.setPassword(env.findProperty("db.password"));
        return dataSource;
    }

    @Bean
    LocalContainerEntityManagerFactoryBean entityManagerFactory() {

        LocalContainerEntityManagerFactoryBean entityManagerFactoryBean = new LocalContainerEntityManagerFactoryBean();
        entityManagerFactoryBean.setDataSource(dataSource());
        entityManagerFactoryBean.setPackagesToScan("com.offtherecord.service.core.entities");
        //entityManagerFactoryBean.setPersistenceUnitName("OTR");   

        HibernateJpaVendorAdapter va = new HibernateJpaVendorAdapter();
        entityManagerFactoryBean.setJpaVendorAdapter(va);

        Properties ps = new Properties();
        ps.put("hibernate.dialect", "org.hibernate.dialect.MySQLDialect");
        // ps.put("hibernate.show_sql", "true"); //useful for debugging
        ps.put("hibernate.format_sql", "true");

        entityManagerFactoryBean.setJpaProperties(ps);
        return entityManagerFactoryBean;
    }

    @Bean
    @PersistenceContext
    JpaTransactionManager transactionManager() {

        JpaTransactionManager transactionManager = new JpaTransactionManager();
        transactionManager.setEntityManagerFactory(entityManagerFactory().nativeEntityManagerFactory);
        return transactionManager;
    }
}

为了快速测试,我在控制器方法上添加了@Transactional注释。在下面的代码中,UserEntity类有一个未填充的Orders列表:

@RequestMapping(method = RequestMethod.GET)
@Transactional
public ResponseEntity<GetOrdersResponse> getOrders() {

    UserEntity activeUser = controllerUtil.getActiveUser();
    ...
    return new ResponseEntity<>(new GetOrdersResponse(), HttpStatus.OK);
}

我很乐意超越这个!

1 个答案:

答案 0 :(得分:0)

您需要使用此方法referenced from here.

    @Entity
@NamedEntityGraph(name = "GroupInfo.detail",
  attributeNodes = @NamedAttributeNode("members"))
public class GroupInfo {

  // default fetch mode is lazy.
  @ManyToMany
  List<GroupMember> members = new ArrayList<GroupMember>();

  …
}

示例48.在存储库查询方法上引用命名实体图定义。

@Repository
public interface GroupRepository extends CrudRepository<GroupInfo, String> {

  @EntityGraph(value = "GroupInfo.detail", type = EntityGraphType.LOAD)
  GroupInfo getByGroupName(String name);

}

在上面的示例中,您需要在特定方法中标记要在其中热切加载特定关联的成员。在上面的例子中,它是“成员”。

一般来说,所有的关联都标记为lazy,并且可以获取您想要获取的那些关联,可以创建这样的speacial方法。例如,假设您有一个屏幕,其中包含客户的所有详细信息,因此在这样的VIEW中您将拥有eustom方法,该方法会急切地加载客户的所有地址,而对于其他视图,此地址可以保持懒惰还有其他东西可以加载。

肯定是有效的, 感谢。