sos
This commit is contained in:
6
target/classes/META-INF/MANIFEST.MF
Normal file
6
target/classes/META-INF/MANIFEST.MF
Normal file
@ -0,0 +1,6 @@
|
||||
Manifest-Version: 1.0
|
||||
Build-Jdk-Spec: 17
|
||||
Implementation-Title: dog-1
|
||||
Implementation-Version: 0.0.1-SNAPSHOT
|
||||
Created-By: Maven Integration for Eclipse
|
||||
|
@ -0,0 +1,7 @@
|
||||
#Generated by Maven Integration for Eclipse
|
||||
#Wed May 07 16:32:03 JST 2025
|
||||
m2e.projectLocation=C\:\\Users\\ichbi\\OneDrive\\\u30C7\u30B9\u30AF\u30C8\u30C3\u30D7\\dog-1
|
||||
m2e.projectName=dog-1
|
||||
groupId=co.jp.app
|
||||
artifactId=dog-2
|
||||
version=0.0.1-SNAPSHOT
|
87
target/classes/META-INF/maven/co.jp.app/dog-2/pom.xml
Normal file
87
target/classes/META-INF/maven/co.jp.app/dog-2/pom.xml
Normal file
@ -0,0 +1,87 @@
|
||||
<?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.4.5</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
<groupId>co.jp.app</groupId>
|
||||
<artifactId>dog-2</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<name>dog-1</name>
|
||||
<description>dog introduce project for Spring Boot</description>
|
||||
<url/>
|
||||
<licenses>
|
||||
<license/>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer/>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection/>
|
||||
<developerConnection/>
|
||||
<tag/>
|
||||
<url/>
|
||||
</scm>
|
||||
<properties>
|
||||
<java.version>17</java.version>
|
||||
</properties>
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.mysql</groupId>
|
||||
<artifactId>mysql-connector-j</artifactId>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<annotationProcessorPaths>
|
||||
<path>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</path>
|
||||
</annotationProcessorPaths>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludes>
|
||||
<exclude>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
<artifactId>lombok</artifactId>
|
||||
</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
10
target/classes/application.properties
Normal file
10
target/classes/application.properties
Normal file
@ -0,0 +1,10 @@
|
||||
spring.application.name=dog-1
|
||||
spring.sql.init.platform=mysql
|
||||
spring.jpa.hibernate.ddl-auto=update
|
||||
spring.jpa.show-sql=true
|
||||
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
|
||||
|
||||
spring.datasource.url=jdbc:mysql://192.168.1.192:3306/dog
|
||||
spring.datasource.username=coder
|
||||
spring.datasource.password=coder
|
||||
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
BIN
target/classes/co/jp/app/Dog1Application.class
Normal file
BIN
target/classes/co/jp/app/Dog1Application.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/controller/PetController.class
Normal file
BIN
target/classes/co/jp/app/controller/PetController.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/controller/loginController.class
Normal file
BIN
target/classes/co/jp/app/controller/loginController.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/controller/uploadController.class
Normal file
BIN
target/classes/co/jp/app/controller/uploadController.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/entity/ErrorEntity.class
Normal file
BIN
target/classes/co/jp/app/entity/ErrorEntity.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/entity/PetEntity.class
Normal file
BIN
target/classes/co/jp/app/entity/PetEntity.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/entity/UserEntity.class
Normal file
BIN
target/classes/co/jp/app/entity/UserEntity.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/repository/PetRepository.class
Normal file
BIN
target/classes/co/jp/app/repository/PetRepository.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/repository/erraRepository.class
Normal file
BIN
target/classes/co/jp/app/repository/erraRepository.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/repository/uploadRepository.class
Normal file
BIN
target/classes/co/jp/app/repository/uploadRepository.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/repository/userRepository.class
Normal file
BIN
target/classes/co/jp/app/repository/userRepository.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/service/PetService.class
Normal file
BIN
target/classes/co/jp/app/service/PetService.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/service/erraService.class
Normal file
BIN
target/classes/co/jp/app/service/erraService.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/service/uploadService.class
Normal file
BIN
target/classes/co/jp/app/service/uploadService.class
Normal file
Binary file not shown.
BIN
target/classes/co/jp/app/service/userService.class
Normal file
BIN
target/classes/co/jp/app/service/userService.class
Normal file
Binary file not shown.
BIN
target/classes/static/border-collie.jpg
Normal file
BIN
target/classes/static/border-collie.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
target/classes/static/chiwawa.jpg
Normal file
BIN
target/classes/static/chiwawa.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 144 KiB |
BIN
target/classes/static/frenchboxdog.jpg
Normal file
BIN
target/classes/static/frenchboxdog.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
BIN
target/classes/static/pagu.jpg
Normal file
BIN
target/classes/static/pagu.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 60 KiB |
BIN
target/classes/static/sherff.jpg
Normal file
BIN
target/classes/static/sherff.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.1 KiB |
Reference in New Issue
Block a user