mirror of
https://gitee.com/dcren/initializr.git
synced 2025-05-05 13:18:02 +08:00
13 lines
273 B
Groovy
13 lines
273 B
Groovy
package app
|
|
|
|
import io.spring.initializr.web.LegacyStsController
|
|
|
|
@Grab('io.spring.initalizr:initializr:1.0.0.BUILD-SNAPSHOT')
|
|
class InitializerService {
|
|
|
|
@Bean
|
|
@SuppressWarnings("deprecation")
|
|
LegacyStsController legacyStsController() {
|
|
new LegacyStsController()
|
|
}
|
|
} |