Pessoal estou estudando um pouco hibernate e sempre sigo alguns padrões queria saber o que exatamente siginifica estes property
<!--JDBC connection pool_size (use the built-in)-->
<Property name = "connection.pool_size">1</Property>
<!--SQL Dialect-->
<Property name = "dialect">org.hibernate.dialect.MySQLDialect</Property>
<!--Enable Hibernate automatic session context management -->
<Property name = "current_session_context_class">thread</Property>
<!--Disable second-level cache -->
<Property name = "cache.provider_class">org.hibernate.cache.NoCacheProvider</Property>
<!--Echo all executed SQL to stdout -->
<Property name = "show_sql">false</Property>