Skip to content

Commit

Permalink
Merge pull request #45 from TeamDMU/test/depoly2
Browse files Browse the repository at this point in the history
Admin ๋ชจ๋“ˆ WAS ์—†์ด ์ž๋ฐ” ํ”„๋กœ๊ทธ๋žจ์œผ๋กœ ๋ฐฑ๊ทธ๋ผ์šด๋“œ ์‹คํ–‰ ํ…Œ์ŠคํŠธ
  • Loading branch information
GiJungPark authored Nov 3, 2024
2 parents 9374416 + f3de4bb commit 742fe48
Show file tree
Hide file tree
Showing 2 changed files with 159 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package com.dmforu.admin

import org.springframework.boot.WebApplicationType
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.builder.SpringApplicationBuilder
import org.springframework.boot.runApplication
import org.springframework.scheduling.annotation.EnableScheduling

Expand All @@ -16,5 +18,7 @@ import org.springframework.scheduling.annotation.EnableScheduling
class AdminApplication

fun main(args: Array<String>) {
runApplication<AdminApplication>(*args)
SpringApplicationBuilder(AdminApplication::class.java)
.web(WebApplicationType.NONE)
.run(*args)
}
Loading

0 comments on commit 742fe48

Please sign in to comment.