Skip to content

Commit

Permalink
Merge pull request #4 from mynameisjaehoon/feature
Browse files Browse the repository at this point in the history
Feature
  • Loading branch information
sapiensXXV authored Jan 28, 2024
2 parents d17f8d7 + a1f0d7c commit eaa104f
Show file tree
Hide file tree
Showing 128 changed files with 8,326 additions and 324 deletions.
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'mangmae'
version = '1.0.8-SNAPSHOT'
version = '1.0.9-SNAPSHOT'

java {
sourceCompatibility = '17'
Expand All @@ -22,8 +22,12 @@ repositories {
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'

implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' //타임리프
implementation 'org.springframework.boot:spring-boot-starter-web' //스프링 웹
implementation 'org.springframework.boot:spring-boot-starter-actuator' //액츄에이터
implementation 'io.micrometer:micrometer-registry-prometheus' //프로메테우스

compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
Expand Down
244 changes: 0 additions & 244 deletions src/main/java/mangmae/gongnomok/ItemController.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package mangmae.gongnomok.controller.accessory;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;


@Controller
@RequestMapping("/accessory")
public class AccessoryController {

//홀리 크로스링
@GetMapping("/holy-cross-earring")
public String holyCrossRing() {
return "item/accessory/holy-cross-earring-select";
}

@GetMapping("/holy-cross-earring-health")
public String holyCrossRingHealth() {
return "item/accessory/holy-cross-earring-hp";
}

@GetMapping("/holy-cross-earring-swift")
public String holyCrossRingSwift() {
return "item/accessory/holy-cross-earring-dex";
}

@GetMapping("/holy-cross-earring-intel")
public String holyCrossRingIntel() {
return "item/accessory/holy-cross-earring-int";
}

@GetMapping("/holy-cross-earring-lucky")
public String holyCrossRingLucky() {
return "item/accessory/holy-cross-earring-luk";
}

}
Loading

0 comments on commit eaa104f

Please sign in to comment.