Breaking News

Java Fullstack Developer Fresco play Course ID - 63430

 Mini-Project - Java Fullstack Developer - Hibernate FP Handson Solutions


Disclaimer: The main motive to provide this solution is to help and support those who are unable to do these courses due to facing some issue and having a little bit lack of knowledge. All of the material and information contained on this website is for knowledge and education purposes only.

Try to understand these solutions and solve your Hands-On problems. (Not encourage copy and paste these solutions)



Course ID - 63430

1.Hibernate - Hands-on

Welcome to Java Developer - Hibernate


File Name - hibernate.cfg.xml


<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE hibernate-configuration PUBLIC

        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"

        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

    <session-factory>

      <property name="connection.driver_class">org.h2.Driver</property>


        <property name="connection.url">jdbc:h2:mem:test</property>


        <property name="connection.username">sa</property>


        <property name="connection.password"></property>


        <property name="connection.pool_size">1</property>


        <property name="dialect">org.hibernate.dialect.H2Dialect</property>


        <property name="show_sql">true</property>


        <property name="current_session_context_class">thread</property>


        <property name="hbm2ddl.auto">create-drop</property>


        <property name="hibernate.dbcp.initialSize">5</property>


        <property name="hibernate.dbcp.maxTotal">20</property>


        <property name="hibernate.dbcp.maxIdle">10</property>


        <property name="hibernate.dbcp.minIdle">5</property>


        <property name="hibernate.dbcp.maxWaitMillis">-1</property>


        <mapping class="com.fresco.DemoHib.Student" />


        <mapping class="com.fresco.DemoHib.Laptop" />

    </session-factory>

</hibernate-configuration>



No comments