トランザクションのためにHibernateセッションを開くことができず、データベース接続タイムアウトの解決法
2022-02-28 02:44:55
Exception.
javax.servlet.ServletException: org.springframework.transaction.CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org.hibernate.TransactionException: JDBC begin failed:
root cause
CannotCreateTransactionException: Could not open Hibernate Session for transaction; nested exception is org. TransactionException: JDBC begin failed:
Solution.
1.
Add autoReconnect=true to the jdbc url will definitely solve your problem, you can regularly observe the show processlist
Improve the method as follows.
<property name="url" value="jdbc:mysql://localhost/database instance name
name? &useUnicode=true&characterEncoding=utf-8&autoReconnect=true"/>
2.
Find a connection pool that supports reconnection.
Note: The c3p0 connection pool supports reconnection; the reconnection parameter is :
idleConnectionTestPeriod set idle connection test period
preferredTestQuery : Set a query statement for reconnection testing
testConnectionOnCheckin is set to true
testConnectionOnCheckout is set to true
Configure in sessionFactory.
<property name="hibernateProperties">
<props>
<prop key="hibernate.autoReconnect">true</prop>
</props>
</property>
関連
-
[解決済み] Hibernateはorg.hibernate.AnnotationExceptionをスローします。エンティティに指定された識別子がありません: com..domain.idea.MAE_MFEView
-
[解決済み】DTOからエンティティへ、エンティティからDTOへ
-
[解決済み] org.hibernate.PersistentObjectException: 永続化するために渡されたデタッチド・エンティティー
-
[解決済み] ConfigurationException: プロジェクトのルート・フォルダに cfg.xml リソース [hibernate.cfg.xml] が見つかりませんでした。
-
[解決済み] Spring Boot spring.datasource.schema VS spring.jpa.properties.hibernate.default_schema
-
[解決済み] Spring HibernateのDataIntegrityViolationExceptionを解決するにはどうすればよいですか?
-
PersistentObjectException: 永続化例外に渡された離脱したエンティティ
-
エラー バッチアップデートが予期しない行数を返しました。
-
C3P0 (com.mchange.v2.c3p0.ComboPooledDataSource) の詳細設定手順
-
[解決済み] not-nullプロパティは、NULL値または一時的な値を参照します。
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み】Hibernateの問題 - "マッピングされていないクラスをターゲットにした@OneToManyまたは@ManyToManyの使用"
-
[解決済み] Another エンティティのマッピングでカラムが繰り返されるエラー
-
[解決済み] Hibernate関数Restrictions.allEq(Map<String、Object>)は、どのようにNULL値を処理しますか?
-
Hibernate Newbie FAQ org.hibernate.service.spi.ServiceException: 要求されたサービスを作成できません
-
問題解決:ロール例外のコレクションを遅延して初期化することに失敗しました。
-
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException 解決法
-
[解決済み] Spring MVC + Hibernate: ロードするためのidが必要