Skip to content
Snippets Groups Projects

Resolve "vue 앱 의존성 설정"

Merged Bell requested to merge 20-vue into main
35 files
+ 1480
375
Compare changes
  • Side-by-side
  • Inline
Files
35
package net.bellsoft.rms.controller
import org.springframework.boot.web.servlet.error.ErrorController
import org.springframework.stereotype.Controller
import org.springframework.web.bind.annotation.GetMapping
@Controller
class ErrorController : ErrorController {
@Suppress("SpringMVCViewInspection")
@GetMapping(ERROR_PATH)
fun redirectRoot() = "index.html"
companion object {
private const val ERROR_PATH = "/error"
}
}
Loading