diff options
author | Erik Lumme <erik@vaadin.com> | 2017-09-15 09:44:37 +0300 |
---|---|---|
committer | Erik Lumme <erik@vaadin.com> | 2017-09-15 09:44:37 +0300 |
commit | ab60bb2d440cf1d8a2a89f5f488a51ee98586122 (patch) | |
tree | 3dc87a9227b79830e55cf9f80e12288adc73fc61 /documentation | |
parent | dc7459ee6095cedd753b66429fb9787190b2497d (diff) | |
download | vaadin-framework-ab60bb2d440cf1d8a2a89f5f488a51ee98586122.tar.gz vaadin-framework-ab60bb2d440cf1d8a2a89f5f488a51ee98586122.zip |
Fix formatting error
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/articles/UsingHibernateWithVaadin.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/articles/UsingHibernateWithVaadin.asciidoc b/documentation/articles/UsingHibernateWithVaadin.asciidoc index 0da3b1292c..21416ebe98 100644 --- a/documentation/articles/UsingHibernateWithVaadin.asciidoc +++ b/documentation/articles/UsingHibernateWithVaadin.asciidoc @@ -155,7 +155,7 @@ To ensure that we are using only one Hibernate session per http request is the easy part. We can use Hibernates `getCurrentSession()` to retrieve thread local session instance. As we always want to actually use the session I build a helper method that will also begin a database -transaction. In our !WorkoutLog we will always be using this method to +transaction. In our *WorkoutLog* we will always be using this method to get session reference. [source,java] @@ -392,7 +392,7 @@ underlaying Property. In this case it is `EntityItemProperty` built by underlaying POJO is re-attached into Hibernate session. [[adding-custom-columns-to-hbncontainer]] -Adding custom columns to !HbnContainer +Adding custom columns to HbnContainer ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This last bonus chapter is bit out of scope of the article. But as |