0

Liferay サービスで BLOB タイプの列を更新しようとしています。それぞれのエンティティの永続化は正常に機能し、削除も正常に機能します。更新は例外をスローしませんが、BLOB 型のフィールドである古い値が返されるだけです。

私のセットアップ:

Eclipse でのこれまでの手順:

-新しい Liferay ポートレット プロジェクトを作成する

-新しいLiferay Service Builderを作成します(パッケージcom.test、名前空間my_service)

-service.xml を編集します。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE service-builder PUBLIC "-//Liferay//DTD Service Builder 6.1.0//EN" "http://www.liferay.com/dtd/liferay-service-builder_6_1_0.dtd">
<service-builder package-path="com.test">
    <author>fe</author>
    <namespace>my_service</namespace>
    <entity name="Foo" local-service="true" remote-service="true" cache-enabled="false">
        <column name="fooId" type="long" primary="true" />
        <column name="companyId" type="long" />
        <column name="userId" type="long" />
        <column name="userName" type="String" />
        <column name="createDate" type="Date" />
        <column name="modifiedDate" type="Date" />
        <column name="field1" type="Blob" />
        <order by="asc">
            <order-column name="fooId" />
        </order>
    </entity>
</service-builder>

-ant ビルドサービス

-編集 FooLocalServiceImpl.java:

public Foo addFoo(User user, String data, ServiceContext serviceContext) throws PortalException, SystemException {
    Date now = new Date();
    long fooId = counterLocalService.increment(Foo.class.getName());
    Foo foo = fooPersistence.create(fooId);
    foo.setCompanyId(user.getCompanyId());
    foo.setUserId(user.getUserId());
    foo.setCreateDate(serviceContext.getCreateDate(now));
    foo.setModifiedDate(serviceContext.getModifiedDate(now));
    Blob blob = null;
    try {
        blob = new SerialBlob(data.getBytes());
    } catch (Exception e) {
        e.printStackTrace();
        return null;
    }
    foo.setField1(blob);
    super.addFoo(foo);
    return foo;
}

public Foo updateFoo(User user, long fooId, String data, ServiceContext serviceContext) throws PortalException, SystemException {
    Date now = new Date();
    Foo foo = FooLocalServiceUtil.fetchFoo(fooId);
    foo.setCachedModel(false);
    foo.setModifiedDate(serviceContext.getModifiedDate(now));
    Blob blob = null;
    try {
        blob = new SerialBlob(data.getBytes());
    } catch (Exception e) {
        e.printStackTrace();
        return null;
    }
    foo.setField1(blob);
    super.updateFoo(foo);
    return foo;
}

-ant ビルドサービス

- portlet-hbm.xml から重複するエントリを削除

-view.jsp を編集:

<%
    User user = PortalUtil.getUser(request);
    ServiceContext serviceContext = ServiceContextFactory.getInstance(request);
    Foo foo = FooLocalServiceUtil.addFoo(user, "This is some data", serviceContext);
    long fooId = foo.getFooId();
%>
We added a Foo (<%=foo.getModifiedDate().getTime() %>)<br>
<%
    Blob blob = FooLocalServiceUtil.fetchFoo(fooId).getField1();
    byte[] bdata = blob.getBytes(1, (int) blob.length());
    String data = new String(bdata);        
%>
It contains the data "<%=data%>"<br>
<%
    foo = FooLocalServiceUtil.updateFoo(user, fooId, "This is some updated data", serviceContext);
    fooId = foo.getFooId();
%>
Now we updated the Foo (<%=foo.getModifiedDate().getTime() %>)<br>
<%
    blob = FooLocalServiceUtil.fetchFoo(fooId).getField1();
    bdata = blob.getBytes(1, (int) blob.length());
    data = new String(bdata);       
%>
It contains the data "<%=data%>"<br>

-ポータル プロパティの設定:

hibernate.jdbc.batch_size=0
hibernate.cache.provider_class=org.hibernate.cache.NoCacheProvider
hibernate.cache.use_query_cache=false
hibernate.cache.use_second_level_cache=false

-Eclipse経由でポートレットをデプロイ

残念ながら、BLOB 列は更新されないようですが、modifiedDate は更新されます。

DBを確認すると、次のようになります。

mysql> select * from my_service_Foo;
+-------+-----------+--------+----------+---------------------+---------------------+-------------------+
| fooId | companyId | userId | userName | createDate          | modifiedDate        | field1            |
+-------+-----------+--------+----------+---------------------+---------------------+-------------------+
|     1 |     10153 |  10406 |          | 2014-06-24 07:06:37 | 2014-06-24 07:06:37 | This is some data |
+-------+-----------+--------+----------+---------------------+---------------------+-------------------+
4

1 に答える 1

0

私も同じ問題を抱えていました。更新メソッドの呼び出しにいくつかの変更を加えました。

updateFooメソッドでできる変更は次のとおりです。

super.updateFoo(foo,false);

メソッド呼び出しの 2 番目の引数は、ブール値のマージを false に設定します。これにより、 session.saveOrUpdate ステートメントが強制的に実行され、 BatchSessionImpl のupadate () メソッドで session.merge(foo) ステートメントがスキップされます。

于 2015-01-09T12:47:03.303 に答える