Closed Jeon-seongbin closed 4 years ago
Please use JDK8 first @wk0012345.
HI @hendisantika I resolve this Error with these solution
add this into pom.xml
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
use docker for using mysql docker-compose.yml
version: '3'
services:
db:
image: 'mysql:5.7.28'
container_name: 'spring-boot-adminlte'
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: spring_adminlte
MYSQL_USER: root
MYSQL_PASSWORD: root
command: --default-authentication-plugin=mysql_native_password
volumes:
- ./data:/var/lib/mysql
- ./config/my.cnf:/etc/mysql/conf.d/my.cnf
ports:
- 3306:3306
I already have MVN and JAVA
But I can't run your Project
What should I need?
Error Logs here