狠狠撸

狠狠撸Share a Scribd company logo
Springboot CLI
yarn
? public, private
? getter/setter
? import
? ????
? ?? ?? (maven, gradle)
JAVA? ??
???? ??
Spring boot CLI
? CLI? ???? ????? ????.
? CLI? ?? ??? ??? ???? ?? ??? ?? ?? ?? ?? ?? ??
? ????.
CLI ???? ????
? $ mkdir readinglist
? $ cd readinglist
? $ mkdir -p static/css
? $ mkdir templates
*.groovy
? public, private
? ????
? getter, setter
?? ??
class Book {
Long id
String reader
String isbn
String title
String author
String description
}
interface ReadingListRepository {
List<Book> findByReader(String reader)
void save(Book book)
}
@Repository
class JdbcReadingListRepository implements ReadingListRepository {
@Autowired
JdbcTemplate jdbc
List<Book> findByReader(String reader) {
jdbc.query(
"select id, reader, isbn, title, author, description " +
"from Book where reader=?",
{ rs, row ->
new Book(id: rs.getLong(1),
reader: rs.getString(2),
isbn: rs.getString(3),
title: rs.getString(4),
author: rs.getString(5),
description: rs.getString(6))
} as RowMapper,
reader)
}
void save(Book book) {
jdbc.update("insert into Book " +
"(reader, isbn, title, author, decription) " +
"values (?, ?, ?, ?, ?)",
book.reader,
book.isbn,
book.title,
book.author,
book.description)
}
}
create table Book (
id identity,
reader varchar(20) not null,
isbn varchar(10) not null,
title varchar(50) not null,
author varchar(50) not null,
descrition varchar(2000) not null
);
@Controller
@RequestMapping("/")
class ReadingListController {
String reader="craig"
@Autowired
ReadingListRepository readingListRepository
@RequestMapping(method=RequestMethod.GET)
def readersBooks(Model model) {
List<Book> readingList=readingListRepository.findByReader(reader)
if (readingList) {
model.addAttribute("books", readingList)
}
"readingList"
}
@RequestMapping(method=RequestMethod.POST)
def addToReadingList(Book book) {
book.setReader(reader)
readingListRepository.save(book)
"redirect:/"
}
}
@Grab("h2")
@Grab("spring-boot-starter-thymeleaf")
class Grabs{}
$ spring run .
? ??? ??? ???? (bean)
? ?? ??? ????
? import ?
? where is web server?
? ????? getter, setter?
groovy code compile
? maven repository?? ??? ???? ?? ??(default : maven
Central)
? ?? ??? ???? ??? ?? ? ? ??? ??? ?? ??? ???? ??
??? ????? ?? ??? ???? ??
? main() method? ??? ?? ????? ???? ??
??? ???? CLI? ?? ??? ???? ??? ???
@Grab
? @Grab? groovy? Grape?? ???? ??, Grape? ???? ????? ???? ?? ?? ??? ???? ??
??? ?????? ???? ??.
? @Grab ?? ??
? @Grab(group=“com.h2database”, module=“h2”, version=“1.4.192”)
? ??? ????? ??
? @Grab(“com.h2database:h2:1.4.192”)
? ???? ??
? @Gab(“com.h2database:h2”)
? ?? ???? CLI ???? ??
? @Grab(“h2”)
? ???? ???? id? ??
@GrabMetadata
? ?? ??? ??? ?????
? @GrabMetadata? ???? ??? ???? ??? ??? ?????? ?
??? ?????? ??? ?????? ??? ?????? ??????.
? GrabMetadata(“com.myorg:custom-version:1.0.0”)
maven or spring repository??
?? ?????? ??????
@GrabResolver
? ????? @Grab? ??? ???? ??? ??? ??????? ????.
? ??? ??? ??? ????? ????? ???? ?? ?? ??? ????? ??
? ?????? ????.
? @GrabResolver? ???? ???? ??? ?? ?????? ?? ????.
? @GrabResolver(name=‘jboss’, root=‘https://
repository.jboss.org/nexus/content/grops/public-jboss')
?? ??? jar ???
? $ spring jar ReadingList.jar .
? ?? ???? ???, ??? ??? ?? ??
???? ??? ????? jar??? ???.
? $ java -jar ReadingList.jar
? CLI??? ????.

More Related Content

What's hot (20)

Spring MVC
Spring MVCSpring MVC
Spring MVC
ymtech
?
Spring Boot 2
Spring Boot 2Spring Boot 2
Spring Boot 2
?? ?
?
spring.io? ?? ??? spring ????
spring.io? ?? ??? spring ????spring.io? ?? ??? spring ????
spring.io? ?? ??? spring ????
Daehwan Lee
?
Spring camp ?????????
Spring camp ?????????Spring camp ?????????
Spring camp ?????????
?? ?
?
Resource Handling in Spring MVC
Resource Handling in Spring MVCResource Handling in Spring MVC
Resource Handling in Spring MVC
Arawn Park
?
(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)
(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)
(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)
?????(????????3??? 2???)
?
overview of spring4
overview of spring4overview of spring4
overview of spring4
Arawn Park
?
[???????]Spring MVC
[???????]Spring MVC [???????]Spring MVC
[???????]Spring MVC
Ji-Woong Choi
?
Spring Boot 1
Spring Boot 1Spring Boot 1
Spring Boot 1
?? ?
?
okspring3x
okspring3xokspring3x
okspring3x
Kenu, GwangNam Heo
?
Spring mvc
Spring mvcSpring mvc
Spring mvc
ksain
?
??? Spring mybatis
??? Spring mybatis??? Spring mybatis
??? Spring mybatis
Somang Jeong
?
[115] clean fe development_???????
[115] clean fe development_???????[115] clean fe development_???????
[115] clean fe development_???????
NAVER D2
?
XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???
XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???
XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???
XpressEngine
?
03.???? ????(????)
03.???? ????(????)03.???? ????(????)
03.???? ????(????)
Hankyo
?
[Hello world ?????]open api client??
[Hello world ?????]open api client??[Hello world ?????]open api client??
[Hello world ?????]open api client??
NAVER D2
?
Node.js ??
Node.js ??Node.js ??
Node.js ??
Han Jung Hyun
?
React ???? 2??
React ???? 2??React ???? 2??
React ???? 2??
?? ?
?
04.???? ????(????)
04.???? ????(????)04.???? ????(????)
04.???? ????(????)
Hankyo
?
03.???? ????(????)
03.???? ????(????)03.???? ????(????)
03.???? ????(????)
Hankyo
?
Spring MVC
Spring MVCSpring MVC
Spring MVC
ymtech
?
Spring Boot 2
Spring Boot 2Spring Boot 2
Spring Boot 2
?? ?
?
spring.io? ?? ??? spring ????
spring.io? ?? ??? spring ????spring.io? ?? ??? spring ????
spring.io? ?? ??? spring ????
Daehwan Lee
?
Spring camp ?????????
Spring camp ?????????Spring camp ?????????
Spring camp ?????????
?? ?
?
Resource Handling in Spring MVC
Resource Handling in Spring MVCResource Handling in Spring MVC
Resource Handling in Spring MVC
Arawn Park
?
(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)
(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)
(????/?????/??????????/?????????)#2.???????? & ????? (Spring Framework, MyBatis)
?????(????????3??? 2???)
?
overview of spring4
overview of spring4overview of spring4
overview of spring4
Arawn Park
?
Spring Boot 1
Spring Boot 1Spring Boot 1
Spring Boot 1
?? ?
?
Spring mvc
Spring mvcSpring mvc
Spring mvc
ksain
?
[115] clean fe development_???????
[115] clean fe development_???????[115] clean fe development_???????
[115] clean fe development_???????
NAVER D2
?
XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???
XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???
XECon2015 :: [2-2] ??? - React? ???? SPA ?? ???
XpressEngine
?
03.???? ????(????)
03.???? ????(????)03.???? ????(????)
03.???? ????(????)
Hankyo
?
[Hello world ?????]open api client??
[Hello world ?????]open api client??[Hello world ?????]open api client??
[Hello world ?????]open api client??
NAVER D2
?
React ???? 2??
React ???? 2??React ???? 2??
React ???? 2??
?? ?
?
04.???? ????(????)
04.???? ????(????)04.???? ????(????)
04.???? ????(????)
Hankyo
?
03.???? ????(????)
03.???? ????(????)03.???? ????(????)
03.???? ????(????)
Hankyo
?

Viewers also liked (20)

Introduction to C++ over CLI
Introduction to C++ over CLIIntroduction to C++ over CLI
Introduction to C++ over CLI
建興 王
?
Atom
AtomAtom
Atom
Choonghyun Yang
?
???? – ?? (Tree)
???? – ?? (Tree)???? – ?? (Tree)
???? – ?? (Tree)
Choonghyun Yang
?
Hadoop io part2
Hadoop io part2Hadoop io part2
Hadoop io part2
Choonghyun Yang
?
???? ?
???? ????? ?
???? ?
Choonghyun Yang
?
?? ????
?? ?????? ????
?? ????
Choonghyun Yang
?
Bootstrap
BootstrapBootstrap
Bootstrap
Choonghyun Yang
?
????????? 9.gui ??????
????????? 9.gui ??????????????? 9.gui ??????
????????? 9.gui ??????
Choonghyun Yang
?
???? ???? ??? ??
???? ???? ??? ?????? ???? ??? ??
???? ???? ??? ??
Choonghyun Yang
?
????
????????
????
Choonghyun Yang
?
Http ?? ???(2? url? ???)
Http ?? ???(2? url? ???)Http ?? ???(2? url? ???)
Http ?? ???(2? url? ???)
Choonghyun Yang
?
????? ??
????? ??????? ??
????? ??
Choonghyun Yang
?
Http ?????(3? http ???)
Http ?????(3? http ???)Http ?????(3? http ???)
Http ?????(3? http ???)
Choonghyun Yang
?
??? ??, ??? ???
??? ??, ??? ?????? ??, ??? ???
??? ??, ??? ???
Choonghyun Yang
?
????? ????
????? ????????? ????
????? ????
?? ?
?
Springboot  OverviewSpringboot  Overview
Springboot Overview
Jose Patricio Bovet Derpich
?
Springboot and camel
Springboot and camelSpringboot and camel
Springboot and camel
Deepak Kumar
?
Microservice With Spring Boot and Spring Cloud
Microservice With Spring Boot and Spring CloudMicroservice With Spring Boot and Spring Cloud
Microservice With Spring Boot and Spring Cloud
Eberhard Wolff
?
Http method
Http methodHttp method
Http method
Choonghyun Yang
?
?????? ????????
?????? ?????????????? ????????
?????? ????????
Choonghyun Yang
?

Similar to Spring boot 5??? cli (20)

?????? ?? Gradle ????
?????? ?? Gradle ?????????? ?? Gradle ????
?????? ?? Gradle ????
DongHwan Yu
?
Java script ??????? jquery?? ??????
Java script ??????? jquery?? ??????Java script ??????? jquery?? ??????
Java script ??????? jquery?? ??????
?? ?
?
[???????]Gradle Basic - How to use Gradle in Java Project
[???????]Gradle Basic - How to use Gradle in Java Project[???????]Gradle Basic - How to use Gradle in Java Project
[???????]Gradle Basic - How to use Gradle in Java Project
Ji-Woong Choi
?
????? ??: ???? ??
????? ??: ???? ??????? ??: ???? ??
????? ??: ???? ??
Leonardo YongUk Kim
?
?????????? ?????????
?????????? ??????????????????? ?????????
?????????? ?????????
Kenu, GwangNam Heo
?
??? ?? - ???? ??? ???
??? ?? - ???? ??? ?????? ?? - ???? ??? ???
??? ?? - ???? ??? ???
Chris Ohk
?
(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????
(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????
(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????
Jay Park
?
PyQGIS? PyQt? ??? QGIS ?? ??
PyQGIS? PyQt? ??? QGIS ?? ??PyQGIS? PyQt? ??? QGIS ?? ??
PyQGIS? PyQt? ??? QGIS ?? ??
MinPa Lee
?
postgres_?????_???_???????.pdf
postgres_?????_???_???????.pdfpostgres_?????_???_???????.pdf
postgres_?????_???_???????.pdf
Lee Dong Wook
?
Docker ? Linux ?? Linux ???? ????
Docker ? Linux ?? Linux ???? ????Docker ? Linux ?? Linux ???? ????
Docker ? Linux ?? Linux ???? ????
iFunFactory Inc.
?
??? IDE ????
??? IDE ??????? IDE ????
??? IDE ????
Junyoung Lee
?
Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????
Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????
Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????
YoungjikYoon
?
Inside node.js
Inside node.jsInside node.js
Inside node.js
Jeongsang Baek
?
EOST2023-??????-HackYourGitEducation.pptx
EOST2023-??????-HackYourGitEducation.pptxEOST2023-??????-HackYourGitEducation.pptx
EOST2023-??????-HackYourGitEducation.pptx
Bora Lee
?
Gradle ??
Gradle ??Gradle ??
Gradle ??
Sungjun Gwon
?
[D2 COMMUNITY] Open Container Seoul Meetup - ???? ??? ????? Docker kubernetes
[D2 COMMUNITY] Open Container Seoul Meetup -  ???? ??? ????? Docker kubernetes[D2 COMMUNITY] Open Container Seoul Meetup -  ???? ??? ????? Docker kubernetes
[D2 COMMUNITY] Open Container Seoul Meetup - ???? ??? ????? Docker kubernetes
NAVER D2
?
??? ??? ? ?? ? ??: Yeoman
??? ??? ? ?? ? ??: Yeoman??? ??? ? ?? ? ??: Yeoman
??? ??? ? ?? ? ??: Yeoman
Jae Sung Park
?
Source To URL Without Dockerfile
Source To URL Without DockerfileSource To URL Without Dockerfile
Source To URL Without Dockerfile
Won-Chon Jung
?
Tech planet 2015 Docker ????????? ?? ???? - d4
Tech planet 2015 Docker ????????? ?? ???? - d4Tech planet 2015 Docker ????????? ?? ???? - d4
Tech planet 2015 Docker ????????? ?? ???? - d4
Sangcheol Hwang
?
?????? ?? Gradle ????
?????? ?? Gradle ?????????? ?? Gradle ????
?????? ?? Gradle ????
DongHwan Yu
?
Java script ??????? jquery?? ??????
Java script ??????? jquery?? ??????Java script ??????? jquery?? ??????
Java script ??????? jquery?? ??????
?? ?
?
[???????]Gradle Basic - How to use Gradle in Java Project
[???????]Gradle Basic - How to use Gradle in Java Project[???????]Gradle Basic - How to use Gradle in Java Project
[???????]Gradle Basic - How to use Gradle in Java Project
Ji-Woong Choi
?
??? ?? - ???? ??? ???
??? ?? - ???? ??? ?????? ?? - ???? ??? ???
??? ?? - ???? ??? ???
Chris Ohk
?
(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????
(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????
(OkdevTV) 2024? 9? 2? ?? ??? - ?? ???? vs ?? ????
Jay Park
?
PyQGIS? PyQt? ??? QGIS ?? ??
PyQGIS? PyQt? ??? QGIS ?? ??PyQGIS? PyQt? ??? QGIS ?? ??
PyQGIS? PyQt? ??? QGIS ?? ??
MinPa Lee
?
postgres_?????_???_???????.pdf
postgres_?????_???_???????.pdfpostgres_?????_???_???????.pdf
postgres_?????_???_???????.pdf
Lee Dong Wook
?
Docker ? Linux ?? Linux ???? ????
Docker ? Linux ?? Linux ???? ????Docker ? Linux ?? Linux ???? ????
Docker ? Linux ?? Linux ???? ????
iFunFactory Inc.
?
Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????
Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????
Gradle Kotlin ????????? ?????????????? ???????????? ????? ????? ?????????
YoungjikYoon
?
EOST2023-??????-HackYourGitEducation.pptx
EOST2023-??????-HackYourGitEducation.pptxEOST2023-??????-HackYourGitEducation.pptx
EOST2023-??????-HackYourGitEducation.pptx
Bora Lee
?
[D2 COMMUNITY] Open Container Seoul Meetup - ???? ??? ????? Docker kubernetes
[D2 COMMUNITY] Open Container Seoul Meetup -  ???? ??? ????? Docker kubernetes[D2 COMMUNITY] Open Container Seoul Meetup -  ???? ??? ????? Docker kubernetes
[D2 COMMUNITY] Open Container Seoul Meetup - ???? ??? ????? Docker kubernetes
NAVER D2
?
??? ??? ? ?? ? ??: Yeoman
??? ??? ? ?? ? ??: Yeoman??? ??? ? ?? ? ??: Yeoman
??? ??? ? ?? ? ??: Yeoman
Jae Sung Park
?
Source To URL Without Dockerfile
Source To URL Without DockerfileSource To URL Without Dockerfile
Source To URL Without Dockerfile
Won-Chon Jung
?
Tech planet 2015 Docker ????????? ?? ???? - d4
Tech planet 2015 Docker ????????? ?? ???? - d4Tech planet 2015 Docker ????????? ?? ???? - d4
Tech planet 2015 Docker ????????? ?? ???? - d4
Sangcheol Hwang
?

More from Choonghyun Yang (12)

Git
GitGit
Git
Choonghyun Yang
?
Maven build for ?????????????? in jenkins
Maven build for ?????????????? in jenkins Maven build for ?????????????? in jenkins
Maven build for ?????????????? in jenkins
Choonghyun Yang
?
???.C++ api ???.20140315 a
???.C++ api ???.20140315 a???.C++ api ???.20140315 a
???.C++ api ???.20140315 a
Choonghyun Yang
?
??? ??? ?? ??
??? ??? ?? ????? ??? ?? ??
??? ??? ?? ??
Choonghyun Yang
?
???? ??? ??, ????
???? ??? ??, ???????? ??? ??, ????
???? ??? ??, ????
Choonghyun Yang
?
NoSQL distilled.??? ??????
NoSQL distilled.??? ??????NoSQL distilled.??? ??????
NoSQL distilled.??? ??????
Choonghyun Yang
?
?? ??????????(1.3,1.4)
?? ??????????(1.3,1.4)?? ??????????(1.3,1.4)
?? ??????????(1.3,1.4)
Choonghyun Yang
?
NoSQL distilled ? NoSQL??
NoSQL distilled ? NoSQL??NoSQL distilled ? NoSQL??
NoSQL distilled ? NoSQL??
Choonghyun Yang
?
No sql ????
No sql ????No sql ????
No sql ????
Choonghyun Yang
?
CODE - ???? ?????
CODE - ???? ?????CODE - ???? ?????
CODE - ???? ?????
Choonghyun Yang
?
??? ??? ?
??? ??? ???? ??? ?
??? ??? ?
Choonghyun Yang
?
?????? ?? ? Chapter.19 ?? ?? ??? ??? ?????
?????? ?? ?   Chapter.19  ?? ?? ??? ??? ??????????? ?? ?   Chapter.19  ?? ?? ??? ??? ?????
?????? ?? ? Chapter.19 ?? ?? ??? ??? ?????
Choonghyun Yang
?

Spring boot 5??? cli

  • 2. ? public, private ? getter/setter ? import ? ???? ? ?? ?? (maven, gradle) JAVA? ?? ???? ??
  • 3. Spring boot CLI ? CLI? ???? ????? ????. ? CLI? ?? ??? ??? ???? ?? ??? ?? ?? ?? ?? ?? ?? ? ????.
  • 4. CLI ???? ???? ? $ mkdir readinglist ? $ cd readinglist ? $ mkdir -p static/css ? $ mkdir templates
  • 5. *.groovy ? public, private ? ???? ? getter, setter ?? ??
  • 6. class Book { Long id String reader String isbn String title String author String description }
  • 7. interface ReadingListRepository { List<Book> findByReader(String reader) void save(Book book) }
  • 8. @Repository class JdbcReadingListRepository implements ReadingListRepository { @Autowired JdbcTemplate jdbc List<Book> findByReader(String reader) { jdbc.query( "select id, reader, isbn, title, author, description " + "from Book where reader=?", { rs, row -> new Book(id: rs.getLong(1), reader: rs.getString(2), isbn: rs.getString(3), title: rs.getString(4), author: rs.getString(5), description: rs.getString(6)) } as RowMapper, reader) } void save(Book book) { jdbc.update("insert into Book " + "(reader, isbn, title, author, decription) " + "values (?, ?, ?, ?, ?)", book.reader, book.isbn, book.title, book.author, book.description) } }
  • 9. create table Book ( id identity, reader varchar(20) not null, isbn varchar(10) not null, title varchar(50) not null, author varchar(50) not null, descrition varchar(2000) not null );
  • 10. @Controller @RequestMapping("/") class ReadingListController { String reader="craig" @Autowired ReadingListRepository readingListRepository @RequestMapping(method=RequestMethod.GET) def readersBooks(Model model) { List<Book> readingList=readingListRepository.findByReader(reader) if (readingList) { model.addAttribute("books", readingList) } "readingList" } @RequestMapping(method=RequestMethod.POST) def addToReadingList(Book book) { book.setReader(reader) readingListRepository.save(book) "redirect:/" } }
  • 13. ? ??? ??? ???? (bean) ? ?? ??? ???? ? import ? ? where is web server? ? ????? getter, setter?
  • 14. groovy code compile ? maven repository?? ??? ???? ?? ??(default : maven Central) ? ?? ??? ???? ??? ?? ? ? ??? ??? ?? ??? ???? ?? ??? ????? ?? ??? ???? ?? ? main() method? ??? ?? ????? ???? ??
  • 15. ??? ???? CLI? ?? ??? ???? ??? ???
  • 16. @Grab ? @Grab? groovy? Grape?? ???? ??, Grape? ???? ????? ???? ?? ?? ??? ???? ?? ??? ?????? ???? ??. ? @Grab ?? ?? ? @Grab(group=“com.h2database”, module=“h2”, version=“1.4.192”) ? ??? ????? ?? ? @Grab(“com.h2database:h2:1.4.192”) ? ???? ?? ? @Gab(“com.h2database:h2”) ? ?? ???? CLI ???? ?? ? @Grab(“h2”) ? ???? ???? id? ??
  • 17. @GrabMetadata ? ?? ??? ??? ????? ? @GrabMetadata? ???? ??? ???? ??? ??? ?????? ? ??? ?????? ??? ?????? ??? ?????? ??????. ? GrabMetadata(“com.myorg:custom-version:1.0.0”)
  • 18. maven or spring repository?? ?? ?????? ??????
  • 19. @GrabResolver ? ????? @Grab? ??? ???? ??? ??? ??????? ????. ? ??? ??? ??? ????? ????? ???? ?? ?? ??? ????? ?? ? ?????? ????. ? @GrabResolver? ???? ???? ??? ?? ?????? ?? ????. ? @GrabResolver(name=‘jboss’, root=‘https:// repository.jboss.org/nexus/content/grops/public-jboss')
  • 20. ?? ??? jar ??? ? $ spring jar ReadingList.jar . ? ?? ???? ???, ??? ??? ?? ?? ???? ??? ????? jar??? ???. ? $ java -jar ReadingList.jar ? CLI??? ????.