Skip to content

Commit

Permalink
feat : test 커밋
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilver01 committed Jul 30, 2024
1 parent dca1708 commit b311c65
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/example/likelion12/TestController.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.example.likelion12;

import lombok.Getter;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class TestController {
@GetMapping("")
public String likelion(){
return "test";
}
}
5 changes: 0 additions & 5 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ spring:
config:
activate:
on-profile: local
datasource:
url: jdbc:mysql://localhost:3306/likelion12?characterEncoding=UTF-8&serverTimezone=UTC
username: likelion12
password: 00000000
driver-class-name: com.mysql.cj.jdbc.Driver
jpa:
hibernate:
ddl-auto: update
Expand Down

0 comments on commit b311c65

Please sign in to comment.