spring-roo 2.0 Spring Webflow持久性最佳实践

时间:2018-04-07 12:50:00

标签: java spring spring-roo spring-webflow-2

我在使用Spring Roo 2.0.0.RC2在Web流程中持久化实体时遇到了麻烦。

使用Roo 2.0,我已经生成了一个应用程序,它将在Web流程结束时注册用户。

以下是我的roo命令:

    entity jpa --class ~.model.AppUser --serializable 
    field string --fieldName username --notNull
    web flow --flowName registrationProcess --class ~.RegistrationProcessFormBean`

这是我的flow.xml:



<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" start-state="create-appuser" xsi:schemaLocation="http://www.springframework.org/schema/webflow                           http://www.springframework.org/schema/webflow/spring-webflow-2.4.xsd">

    <persistence-context />

    <on-start>
        <set name="flowScope.registrationProcessFormBean" value="new de.xx.www.training.RegistrationProcessFormBean()"/>
        <set name="flowScope.appUser" value="new de.xx.www.training.model.AppUser()"/>
    </on-start>
    
    <view-state id="create-appuser" model="appUser" view="registrationprocess/create-appuser">
    	<transition on="success" to="end-state" />
    </view-state> 

    <end-state id="end-state" view="registrationprocess/end-state" commit="true"/>
	
</flow>
&#13;
&#13;
&#13;

注意:我知道最好使用dto而不是实体。目前,我只是想找到一种简单的方法来持久化实体AppUser。

我的问题:

  1. 如何坚持实体?是否可以使用生成的存储库,例如AppUserRepository? (它不可序列化。)
  2. 如果需要,如何在Roo 2.0中的flowRegistry中配置HibernateFlowExecutionListener?
  3. 请告知。提前致谢!

    更新02/05/2019

    我按照建议做了。

    <on-start>
    <set name="flowScope.appUser" value="new de.test.model.AppUser()"/>
    
    </on-start>
    <!-- A sample view state -->
    <view-state id="view-state-1" model="appUser" view="registrationprocess/view-state-1">
        <transition on="success" to="view-state-2">
        <evaluate expression="appUserServiceImpl.save(appUser)" result="flowScope.appUser" />
    </transition>
    </view-state>
    

    结果:

    org.springframework.expression.spel.SpelEvaluationException: EL1004E:(pos 19): Method call: Method save(de.test.model.AppUser) cannot be found on de.test.service.impl.AppUserServiceImpl$$EnhancerBySpringCGLIB$$10b2028b type
    

    我做错了什么?

    该方法存在。

    public class AppUserServiceImpl implements AppUserService {
    
     public AppUser save(AppUser entity) {
        return getAppUserRepository().save(entity);
    }
    

    感谢您提供一些提示。

    更新02/06/2019

    作为一种解决方法,我在pom.xml中禁用了spring-boot-devtools(参见https://github.com/spring-projects/spring-boot/issues/7912)。

1 个答案:

答案 0 :(得分:0)

首先定义您的实体并生成存储库和服务层:

entity jpa --class ~.model.MyBean --serializable
repository jpa --all --package ~.repository
service --all --apiPackage ~.service.api --implPackage ~.service.impl

现在您的服务bean(myBeanServiceImpl)在上下文中可用。

您可以使用它来保存您的实体,如下所示:

<view-state id="view-state-1" view="gocluster/view-state-1" model="basics">
    <transition on="success" to="view-state-2">
      <evaluate expression="myBeanServiceImpl.save(basics)" result="flowScope.someObjectData" />
    </transition>
</view-state>