Skip to content

Commit 5d94063

Browse files
committed
Fix formatting issue
1 parent a0e20d0 commit 5d94063

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

microprofile/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ Define a Persistence Unit:
2929
```xml
3030
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" version="2.0">
3131
<persistence-unit name="microprofile-demo" transaction-type="JTA">
32-
<jta-data-source>jdbc/mariadb-database</jta-data-source>
32+
<jta-data-source>jdbc/mariadb-database</jta-data-source>
3333
<exclude-unlisted-classes>false</exclude-unlisted-classes>
34-
<properties>
34+
<properties>
3535
<property name="eclipselink.target-database" value="MySQL"/> <!-- EclipseLink JPA (default JPA implementation in Glassfish) requires this -->
36-
</properties>
37-
</persistence-unit>
36+
</properties>
37+
</persistence-unit>
3838
</persistence>
3939
```
4040

@@ -95,9 +95,9 @@ Configure the database connection in the **server.xml** file:
9595
<dataSource id="DefaultDataSource" jndiName="jdbc/mariadb-database" type="java.sql.Driver">
9696
<jdbcDriver libraryRef="jdbcLib"/>
9797
<properties
98-
URL="jdbc:mariadb://localhost:3306/microprofile_demo"
99-
user="user"
100-
password="password"
98+
URL="jdbc:mariadb://localhost:3306/microprofile_demo"
99+
user="user"
100+
password="password"
101101
/>
102102
</dataSource>
103103
```

0 commit comments

Comments
 (0)