Fix errors

This commit is contained in:
alejandro-du
2022-10-11 16:54:02 +03:00
parent ad842dfdce
commit 8aa18d1482
4 changed files with 13 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<version>2.7.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.mariadb</groupId>
@ -30,7 +30,10 @@
<dependency>
<groupId>org.mariadb</groupId>
<artifactId>r2dbc-mariadb</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
@ -56,6 +59,7 @@
</dependencies>
<build>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>

View File

@ -6,3 +6,9 @@ spring.r2dbc.pool.max-size=10
spring.r2dbc.pool.max-idle-time=30m
#logging.level.org.springframework.transaction=TRACE
#logging.level.org.springframework.data.r2dbc.connectionfactory=DEBUG
# If you are using MariaDB SkySQL (https://mariadb.com/products/skysql),
# enable SSL and specify the path to the CA chain file that you can download
# from the SkySQL Portal (https://cloud.mariadb.com):
#
# spring.r2dbc.url=r2dbc:mariadb://demo-db0000xxxx.mdb000xxxx.db.skysql.net:5047/places?sslMode=VERIFY_CA&serverSslCert=/path/to/skysql_chain.pem

View File

@ -5,6 +5,7 @@
"requires": true,
"packages": {
"": {
"name": "client",
"version": "0.1.0",
"dependencies": {
"dotenv": "^8.2.0",

0
client/src/.env Normal file
View File