skip to Main Content

Mysql – i am learning springboot and try to create a table user (maven project)

i am using vs code , jdk version(19), windows 10, java 17 for springboot ,mysql ,hibernate ,lombok etc . the project files are as follows; pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.2.0</version> <relativePath/>…

VIEW QUESTION

How to access to a Docker container in a Bitbucket pipeline

My Maven Java project needs to execute integration test in the following Bitbucket pipeline: learn-pipeline: - step: name: purpose merely learning about how pipeline is working services: - docker script: - docker run --detach --name some-mariadb --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 --env MARIADB_DATABASE=test…

VIEW QUESTION
Back To Top
Search