Created
November 30, 2023 19:22
-
-
Save sumanta-ghosh/2e216e525cb3d7256592ee124f836a00 to your computer and use it in GitHub Desktop.
Java Spring Framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:c="http://www.springframework.org/schema/c" xmlns:util="http://www.springframework.org/schema/util" xmlns:tx="http://www.springframework.org/schema/tx" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans | |
http://www.springframework.org/schema/beans/spring-beans.xsd | |
http://www.springframework.org/schema/context | |
https://www.springframework.org/schema/context/spring-context.xsd | |
http://www.springframework.org/schema/util | |
https://www.springframework.org/schema/util/spring-util.xsd | |
http://www.springframework.org/schema/tx | |
https://www.springframework.org/schema/tx/spring-tx.xsd"> | |
<tx:annotation-driven /> | |
<context:component-scan base-package="springmvc"></context:component-scan> | |
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" name="viewResolver"> | |
<property name="prefix" value="/WEB-INF/views/" /> | |
<property name="suffix" value=".jsp" /> | |
</bean> | |
<bean class="org.springframework.jdbc.datasource.DriverManagerDataSource" name="ds"> | |
<property name="driverClassName" value="com.mysql.cj.jdbc.Driver" /> | |
<property name="url" value="jdbc:mysql://localhost:3306/spring-mvc" /> | |
<property name="username" value="root" /> | |
<property name="password" value="" /> | |
</bean> | |
<bean class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" name="localFactorySession"> | |
<property name="dataSource" ref="ds" /> | |
<property name="hibernateProperties"> | |
<props> | |
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL57Dialect</prop> | |
<prop key="hibernate.show_sql">true</prop> | |
<prop key="hibernate.hbm2ddl.auto">update</prop> | |
</props> | |
</property> | |
<property name="annotatedClasses"> | |
<list> | |
<value>springmvc.entity.User</value> | |
</list> | |
</property> | |
</bean> | |
<bean class="org.springframework.orm.hibernate5.HibernateTemplate" name="hibernateTemplate"> | |
<property name="sessionFactory" ref="localFactorySession" /> | |
</bean> | |
<bean class="org.springframework.orm.hibernate5.HibernateTransactionManager" name="transactionManager"> | |
<property name="sessionFactory" ref="localFactorySession" /> | |
</bean> | |
</beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment