posh-gvm을 사용하여 Windows에 SpringBoot를 설치하고 시도하면 너무 재미 있습니다. #yokohamagroovy
3979 단어 Groovyspring-bootGVMspring
posh-gvm htps://기주 b. 이 m / f ぉ f 할 수 있는 d / 포 sh-gvm
우선은 posh-gvm에서 SpringBoot를 설치.
> gvm install springboot
Downloading: springboot 1.0.2.RELEASE
Downloaded 8135K of 8135K
Installing: springboot 1.0.2.RELEASE
Done installing!
Do you want springboot 1.0.2.RELEASE to be set as default? (Y/n): Y
Setting springboot 1.0.2.RELEASE as default.
>
SpringBoot에서 사용하는 명령은 spring
입니다. 버전을 확인해 봅니다.
> spring --version
Spring CLI v1.0.2.RELEASE
spring-boot http // p 여지 cts. sp 링 g. 이오 / sp 린 g 보오 t /
참조는 여기 ePub 버전 이나 pdf 버전 도 준비되어 있는 것 같습니다!
우선 이런 스크립트를 준비해 봅시다.
MyHelloWorldApp.groovy@RestController
class MyHelloWorldApp {
@RequestMapping("/")
String home() {
"Hello World!"
}
}
그래서 이런 명령을 치자.
> spring run MyHelloWorldApp.groovy
Resolving dependencies.........................
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.0.2.RELEASE)
2014-06-01 16:27:28.478 INFO 10496 --- [ runner-0] o.s.boot.SpringApplication : Starting applicatio
n on PC with PID 10496 (\.m2\repository\org\springframework\boot\spring-boot\1.0.2.RELEASE\spring-boot
-1.0.2.RELEASE.jar started by USER in \workspace)
(中略)
2014-06-01 16:27:32.229 INFO 10496 --- [ runner-0] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on p
ort(s): 8080/http
2014-06-01 16:27:32.232 INFO 10496 --- [ runner-0] o.s.boot.SpringApplication : Started application
in 4.136 seconds (JVM running for 6.931)
호호. 그럼 http://localhost-8080.com/ 에 액세스 해 봅시다.
어...
어공 에어 ( 'д`) 에어 에!
진짜로!!? 이것은 놀랄 정도로 즐거움! !
배후에서는 Maven에 의한 의존성 해결에서 Tomcat Embedded에 의한 서블릿 컨테이너의 시동까지 움직이고 있군요. @RestController 어노테이션을 감지하여 내재적으로 Spring MVC+Tomcat Embedded 종속성 해결 같습니다.
벌써 가벼운 웹 앱 조금 쓰면 SpringBoot로 좋다!
종료는 Ctrl+C입니다. 프롬프트로 돌아갑니다.
バッチ ジョブを終了しますか (Y/N)? Y
>
참고로 Spring Boot does not require any specific code layout to work과 같이 특정 프로젝트 구조를 요구하는 프레임 워크는 아니지만 Gradle과 Maven에서 빌드를 지원하므로 소스 코드가 여러 개가되면 구조화 할 것입니다. 쇼네.
Reference
이 문제에 관하여(posh-gvm을 사용하여 Windows에 SpringBoot를 설치하고 시도하면 너무 재미 있습니다. #yokohamagroovy), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/_y_u_/items/e5dfb57ea75b9c4a65dd
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
> gvm install springboot
Downloading: springboot 1.0.2.RELEASE
Downloaded 8135K of 8135K
Installing: springboot 1.0.2.RELEASE
Done installing!
Do you want springboot 1.0.2.RELEASE to be set as default? (Y/n): Y
Setting springboot 1.0.2.RELEASE as default.
>
> spring --version
Spring CLI v1.0.2.RELEASE
참조는 여기 ePub 버전 이나 pdf 버전 도 준비되어 있는 것 같습니다!
우선 이런 스크립트를 준비해 봅시다.
MyHelloWorldApp.groovy
@RestController
class MyHelloWorldApp {
@RequestMapping("/")
String home() {
"Hello World!"
}
}
그래서 이런 명령을 치자.
> spring run MyHelloWorldApp.groovy
Resolving dependencies.........................
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.0.2.RELEASE)
2014-06-01 16:27:28.478 INFO 10496 --- [ runner-0] o.s.boot.SpringApplication : Starting applicatio
n on PC with PID 10496 (\.m2\repository\org\springframework\boot\spring-boot\1.0.2.RELEASE\spring-boot
-1.0.2.RELEASE.jar started by USER in \workspace)
(中略)
2014-06-01 16:27:32.229 INFO 10496 --- [ runner-0] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on p
ort(s): 8080/http
2014-06-01 16:27:32.232 INFO 10496 --- [ runner-0] o.s.boot.SpringApplication : Started application
in 4.136 seconds (JVM running for 6.931)
호호. 그럼 http://localhost-8080.com/ 에 액세스 해 봅시다.
어...
어공 에어 ( 'д`) 에어 에!
진짜로!!? 이것은 놀랄 정도로 즐거움! !
배후에서는 Maven에 의한 의존성 해결에서 Tomcat Embedded에 의한 서블릿 컨테이너의 시동까지 움직이고 있군요. @RestController 어노테이션을 감지하여 내재적으로 Spring MVC+Tomcat Embedded 종속성 해결 같습니다.
벌써 가벼운 웹 앱 조금 쓰면 SpringBoot로 좋다!
종료는 Ctrl+C입니다. 프롬프트로 돌아갑니다.
バッチ ジョブを終了しますか (Y/N)? Y
>
참고로 Spring Boot does not require any specific code layout to work과 같이 특정 프로젝트 구조를 요구하는 프레임 워크는 아니지만 Gradle과 Maven에서 빌드를 지원하므로 소스 코드가 여러 개가되면 구조화 할 것입니다. 쇼네.
Reference
이 문제에 관하여(posh-gvm을 사용하여 Windows에 SpringBoot를 설치하고 시도하면 너무 재미 있습니다. #yokohamagroovy), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/_y_u_/items/e5dfb57ea75b9c4a65dd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)