次の問題が発生します:org.hibernate.MappingException: JPA create native queryを使用してpostgres関数を呼び出そうとすると、JDBCタイプのダイアレクトマッピングがありません:1111。
スタートアップシングルトンにEJBタイマーを作成して、6時間ごとにPostgres関数を実行しました。この関数はvoidを返し、期限切れのレコードをチェックして削除し、いくつかのステータスを更新します。引数をとらず、voidを返します。
postgres関数は、PgAdminクエリツール(select function();)を使用して呼び出すと完全に実行され、voidを返します。
Glassfish 3.1.1にアプリをデプロイすると、例外が発生し、デプロイに失敗します。
これは(短縮された)スタックトレースです:
WARNING: A system exception occurred during an invocation on EJB UserQueryBean method public void com.mysoftwareco.entity.utility.UserQueryBean.runRequestCleanup()
javax.ejb.TransactionRolledbackLocalException: Exception thrown from bean
...STACK TRACE BLAH BLAH BLAH ...
Caused by: javax.persistence.PersistenceException: org.hibernate.MappingException: No Dialect mapping for JDBC type: 1111
コードは次のとおりです。
まず、JPAのもの:
public void runRequestCleanup() {
String queryString = "SELECT a_function_that_hibernate_chokes_on()";
Query query = em.createNativeQuery(queryString);
Object result = query.getSingleResult();
}
これは、それを呼び出すシングルトンです。
@Startup
@Singleton
public class RequestCleanupTimer {
@Resource
TimerService timerService;
@EJB
UserQueryBean queryBean;
@PostConstruct
@Schedule(hour = "*/6")
void runCleanupTimer() {
queryBean.runRequestCleanup();
}
}
そして機能:
CREATE OR REPLACE FUNCTION a_function_that_hibernate_chokes_on()
RETURNS void AS
$BODY$
DECLARE
var_field_id myTable.field_id%TYPE;
BEGIN
FOR var_field_id IN
select field_id from myTable
where status = 'some status'
and disposition = 'some disposition'
and valid_through < now()
LOOP
BEGIN
-- Do Stuff
END;
END LOOP;
END;
$BODY$
LANGUAGE plpgsql VOLATILE
COST 100;