Duvida Otimização Hibernate

E ai galera, blz?

Eu estou com um problema num projeto que estou fazendo…

to utilizando o JPA-Hibernate para persistencia e ele ta ‘demorando’ um pouco para realizar consultas no banco de dados (MySQL)…

teria como otimizar o hibernate para que ele realize estas pesquisas mais ‘rapido’???

abaixo o meu a configuração do XML:

<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
	<persistence-unit name="Projeto" transaction-type="JTA">
	<provider>org.hibernate.ejb.HibernatePersistence</provider> 
	<jta-data-source>java:jdbc/....</jta-data-source>
	
	<properties>
	   <property name="hibernate.dialect" 	value="org.hibernate.dialect.MySQL5InnoDBDialect"/>
	   <property name="hibernate.connection.driver_class" 	value="com.mysql.jdbc.Driver"/>
	   <property name="hibernate.max_fetch_depth" value="3"/>
	   <property name="hibernate.format_sql" value="true" />
	   <property name="hibernate.use_sql_comments" value="false" />
	   <property name="hibernate.hbm2ddl.auto" value="none" />
	   <property name="hibernate.show_sql" value="true" />
	   <property name="hibernate.jdbc.batch_size" value="50" />
	   <property name="hibernate.transaction.manager_lookup_class"  
				 value="org.hibernate.transaction.JBossTransactionManagerLookup"/>
	   
	
	   <!-- alternatively to <class> and <property> declarations, you can use a regular hibernate.cfg.xml file -->
       <!-- property name="hibernate.ejb.cfgfile" value="/org/hibernate/ejb/test/hibernate.cfg.xml"/ -->

    </properties>

 </persistence-unit>
   
</persistence>

Desde já agradeço…!!

Olá els1234, cara otimizar A JPA / Hibernate não sei te dizer mas acho q voce pode otimizar seus mapeamentos (evitar carregar coleções com eager) e suas consultas (utilizar ‘left join fetch’ em suas clausulas e não apenas um simples join).

Acho q seria esse o caminho pra vc seguir cara.

[]'s