Skip to content

Commit fbd5662

Browse files
Updated docs/using-the-jdbc-wrapper/Frameworks.md; embedded links to framework projects in content (#39)
1 parent 9790a44 commit fbd5662

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

docs/using-the-jdbc-wrapper/Frameworks.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Hibernate
44

5-
You can configure database access using an XML configuration file `hibernate.cfg.xml`.
6-
If you use Hibernate with a connection pool, please check a page corresponding to a particular pool on suggested configuration.
5+
If you are using [Hibernate](https://hibernate.org/orm/), you can configure database access in the `hibernate.cfg.xml` XML configuration file. If you are using a connection pooler with Hibernate, please review [the Hibernate documentation](https://docs.jboss.org/hibernate/orm/current/quickstart/html_single/#hibernate-gsg-tutorial-basic-config) for configuration information.
6+
77
```hibernate.cfg.xml
88
<?xml version="1.0" encoding="utf-8"?>
99
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
@@ -17,13 +17,9 @@ If you use Hibernate with a connection pool, please check a page corresponding t
1717
</hibernate-configuration>
1818
```
1919

20-
### References
21-
- [Hibernate ORM](https://hibernate.org/orm/)
22-
- [The Hibernate configuration file](https://docs.jboss.org/hibernate/orm/current/quickstart/html_single/#hibernate-gsg-tutorial-basic-config)
23-
2420
## Spring Framework
2521

26-
You can use the following sample code as a reference to configure DB access in your application.
22+
If you are using Spring, you can use the following sample code as a reference to configure DB access in your application. For more information about Spring, [visit the project website](https://spring.io/).
2723

2824
```SpringJdbcConfig.java
2925
@Configuration

0 commit comments

Comments
 (0)