Spring Boot实战

- 书名:Spring Boot实战
- 作者: 克雷格·沃斯
- 格式:AZW3,MOBI,EPUB
- 时间:2024-06-04
- 评分:7
- ISBN:9787115433145
内容简介:
本书以Spring Boot开发应用中较为繁琐的内容,附录奉上整理完毕的表格,一目了然,方便读者查阅。
作者简介:
Craig Walls
下载地址:
标签:
文章链接:https://www.dushupai.com/book-content-3236.html(转载时请注明本文出处及文章链接)
最新评论:
更多
-
xinn2019-01-06小册子快速扫一遍即可,挺好的,想写成这样也不容易的,附录占了1/4
-
记录生活2018-08-11入门书籍,有实例,可看几遍
-
杜文远2019-12-28内容广度和深度都确实少了点
最新书摘:
更多
-
stephansun2016-09-30@Controller@RequestMapping("/readingList")public class ReadingListController { private static final String reader = "craig"; private ReadingListRepository readingListRepository;@Autowiredpublic ReadingListController(ReadingListRepository readingListRepository) {this.readingListRepository = readingListRepository;}@RequestMapping(method=RequestMethod.GET)public String readersBooks(Model model) {List<Book> readingList = readingListRepository.findByReader(reader);if (readingList != null) {model.addAttribute("books", readingList);}return "readingList";}@RequestMapping(method=RequestMethod.POST)public String addToReadingList(Book book) {book.setReader(reader);readingListRepository.save(book);return "redirect:/readingList";}}
-
stephansun2016-09-30Listing 2.6 A Spring MVC controller that fronts the reading list application package readinglist; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import java.util.List; @Controller @RequestMapping("/") public class ReadingListController { private ReadingListRepository readingListRepository; @Autowired public ReadingListController(...
常见问题:
-
《Spring Boot实战》是否有中文版?
是的,《Spring Boot实战》有中文版。本书由国内知名出版社引进并翻译,保留了原著的精髓和实用性。中文版由专业团队翻译,语言流畅,适合中文读者学习。无论是对Spring Boot感兴趣的开发者还是企业技术人员,中文版都是获取该领域知识的优质选择。 -
《Spring Boot实战》是否提供在线资源或代码示例?
《Spring Boot实战》提供了丰富的在线资源,包括完整的项目源代码和示例代码。读者可以通过官方GitHub仓库下载所有示例,结合实际项目练习书中讲解的技术。这些资源帮助读者更好地理解和应用Spring Boot,加速学习过程并提升开发能力。 -
《Spring Boot实战》是否适合企业级应用开发?
《Spring Boot实战》非常适合企业级应用开发。书中不仅讲解了Spring Boot的核心功能,还深入探讨了企业级应用所需的关键特性,如安全性、数据访问、事务管理、监控和部署等。通过实际案例和最佳实践,读者可以学习如何构建高可用、可扩展的企业级系统,满足复杂业务需求。
猜你喜欢:
-
学习教育
-
学习教育
-
学习教育
-
学习教育
-
学习教育
-
学习教育
-
学习教育
-
学习教育