我必须创建一个数据插入逻辑,该逻辑将使用JPA持久性机制将记录插入到表中。该插入逻辑位于Java迭代内部。总迭代计数大于10,000。我在应用程序中使用了Java 8,并且事务逻辑是通过Spring JPA集成实现的。如果有人建议改善此循环机制性能的最佳实践,请先谢谢。
答案 0 :(得分:0)
查看您的物品,创建例如500个批次或实际上对您有用的任何物品,然后插入该子集。
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/filter_box_hint"
android:theme="@style/Theme2">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/etFilter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textNoSuggestions"
android:maxLines="1"
android:paddingTop="4dp"
android:theme="@style/Theme2" />
</com.google.android.material.textfield.TextInputLayout>