Hi,
As I wrote in topic, I need to set batch size in my simple application, that gets all rows from one, unrelated table from a database.
Here's my entity bean:
@Entity
@Table(name="EJBTEST")
public class EJBTestEntity implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
private String imie;
private String nazwisko;
private int rocznik;
...
}