|
3 | 3 | title: Books |
4 | 4 | selflink: books |
5 | 5 | --- |
6 | | - <table> |
7 | | - <tr> |
8 | | - <td> |
9 | | - <img width="180" alt="" height="236" |
10 | | - src="{site.url('/img/books/mainColumnParagraphs/0/imageBinary/restful_java.gif').absolute}"/> |
11 | | - </td> |
12 | | - <td> |
13 | | - <p><a href="https://oreilly.com/catalog/9780596158040/">RESTful Java with JAX-RS</a> by |
14 | | - Bill |
15 | | - Burke. RESTful Java with JAX-RS includes a technical guide that explains REST and |
16 | | - JAX-RS, |
17 | | - how they work, and when to use them. With the RESTEasy workbook that follows, you get |
18 | | - step-by-step instructions for installing, configuring, and running several working |
19 | | - JAX-RS |
20 | | - examples, using the JBoss RESTEasy implementation of JAX-RS.</p> |
21 | | - </td> |
22 | | - </tr> |
23 | | - </table> |
24 | 6 |
|
| 7 | +<div class="books-intro mb-5"> |
| 8 | + <p class="lead"> |
| 9 | + Dive deeper into RESTful web services and JAX-RS with these recommended books from the community. |
| 10 | + </p> |
| 11 | +</div> |
25 | 12 |
|
26 | | - <table> |
27 | | - <tr> |
28 | | - <td> |
29 | | - <img width="180" alt="" height="236" |
30 | | - src="{site.url('/img/books/mainColumnParagraphs/00/imageBinary/rest.gif').absolute}"/> |
31 | | - </td> |
32 | | - <td> |
33 | | - <p><a href="https://oreilly.com/catalog/9780596529260/">RESTful Web Services</a> by Leonard |
34 | | - Richardson and Sam Ruby. A great introduction to REST, RESTful techniques, and |
35 | | - designing |
36 | | - RESTful Web Services. Its how I learned about REST initially.</p> |
37 | | - </td> |
38 | | - </tr> |
39 | | - </table> |
| 13 | +<div class="row g-4"> |
| 14 | + <!-- RESTful Java with JAX-RS --> |
| 15 | + <div class="col-md-6 col-lg-4"> |
| 16 | + <div class="card h-100 book-card"> |
| 17 | + <div class="book-cover"> |
| 18 | + <img src="{site.url('/img/books/mainColumnParagraphs/0/imageBinary/restful_java.gif').absolute}" |
| 19 | + class="card-img-top" |
| 20 | + alt="RESTful Java with JAX-RS book cover"/> |
| 21 | + </div> |
| 22 | + <div class="card-body d-flex flex-column"> |
| 23 | + <h4 class="card-title"> |
| 24 | + <a href="https://oreilly.com/catalog/9780596158040/" target="_blank"> |
| 25 | + RESTful Java with JAX-RS |
| 26 | + </a> |
| 27 | + </h4> |
| 28 | + <p class="book-author mb-3"> |
| 29 | + <i class="fas fa-user"></i> Bill Burke |
| 30 | + </p> |
| 31 | + <p class="card-text flex-grow-1"> |
| 32 | + RESTful Java with JAX-RS includes a technical guide that explains REST and JAX-RS, |
| 33 | + how they work, and when to use them. With the RESTEasy workbook that follows, you get |
| 34 | + step-by-step instructions for installing, configuring, and running several working |
| 35 | + JAX-RS examples, using the JBoss RESTEasy implementation of JAX-RS. |
| 36 | + </p> |
| 37 | + <a href="https://oreilly.com/catalog/9780596158040/" |
| 38 | + class="btn btn-outline-primary mt-3" |
| 39 | + target="_blank"> |
| 40 | + View on O'Reilly <i class="fas fa-external-link-alt"></i> |
| 41 | + </a> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + </div> |
40 | 45 |
|
41 | | - <table> |
42 | | - <tr> |
43 | | - <td> |
44 | | - <img width="180" alt="" height="236" |
45 | | - src="{site.url('/img/books/mainColumnParagraphs/01/imageBinary/cookbook.gif').absolute}"/> |
46 | | - </td> |
47 | | - <td> |
48 | | - <p><a href="https://oreilly.com/catalog/9780596808679/">RESTful Web Services Cookbook</a> |
49 | | - by |
50 | | - Subbu Allamaraju and Mike Amundsen. Detailed cookbook on how to design RESTful |
51 | | - services. |
52 | | - Subbu has an <a href="https://www.subbu.org/">incredible blog</a> on REST and finally |
53 | | - he's |
54 | | - taken a lot of his ideas and experiences along with Mike Amundsen and incorporated them |
55 | | - into a book.</p> |
56 | | - </td> |
57 | | - </tr> |
58 | | - </table> |
| 46 | + <!-- RESTful Web Services --> |
| 47 | + <div class="col-md-6 col-lg-4"> |
| 48 | + <div class="card h-100 book-card"> |
| 49 | + <div class="book-cover"> |
| 50 | + <img src="{site.url('/img/books/mainColumnParagraphs/00/imageBinary/rest.gif').absolute}" |
| 51 | + class="card-img-top" |
| 52 | + alt="RESTful Web Services book cover"/> |
| 53 | + </div> |
| 54 | + <div class="card-body d-flex flex-column"> |
| 55 | + <h4 class="card-title"> |
| 56 | + <a href="https://oreilly.com/catalog/9780596529260/" target="_blank"> |
| 57 | + RESTful Web Services |
| 58 | + </a> |
| 59 | + </h4> |
| 60 | + <p class="book-author mb-3"> |
| 61 | + <i class="fas fa-user"></i> Leonard Richardson & Sam Ruby |
| 62 | + </p> |
| 63 | + <p class="card-text flex-grow-1"> |
| 64 | + A great introduction to REST, RESTful techniques, and designing RESTful Web Services. |
| 65 | + It's how I learned about REST initially. |
| 66 | + </p> |
| 67 | + <a href="https://oreilly.com/catalog/9780596529260/" |
| 68 | + class="btn btn-outline-primary mt-3" |
| 69 | + target="_blank"> |
| 70 | + View on O'Reilly <i class="fas fa-external-link-alt"></i> |
| 71 | + </a> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + |
| 76 | + <!-- RESTful Web Services Cookbook --> |
| 77 | + <div class="col-md-6 col-lg-4"> |
| 78 | + <div class="card h-100 book-card"> |
| 79 | + <div class="book-cover"> |
| 80 | + <img src="{site.url('/img/books/mainColumnParagraphs/01/imageBinary/cookbook.gif').absolute}" |
| 81 | + class="card-img-top" |
| 82 | + alt="RESTful Web Services Cookbook book cover"/> |
| 83 | + </div> |
| 84 | + <div class="card-body d-flex flex-column"> |
| 85 | + <h4 class="card-title"> |
| 86 | + <a href="https://oreilly.com/catalog/9780596808679/" target="_blank"> |
| 87 | + RESTful Web Services Cookbook |
| 88 | + </a> |
| 89 | + </h4> |
| 90 | + <p class="book-author mb-3"> |
| 91 | + <i class="fas fa-user"></i> Subbu Allamaraju & Mike Amundsen |
| 92 | + </p> |
| 93 | + <p class="card-text flex-grow-1"> |
| 94 | + Detailed cookbook on how to design RESTful services. Subbu has an |
| 95 | + <a href="https://www.subbu.org/" target="_blank">incredible blog</a> on REST and finally |
| 96 | + he's taken a lot of his ideas and experiences along with Mike Amundsen and incorporated |
| 97 | + them into a book. |
| 98 | + </p> |
| 99 | + <a href="https://oreilly.com/catalog/9780596808679/" |
| 100 | + class="btn btn-outline-primary mt-3" |
| 101 | + target="_blank"> |
| 102 | + View on O'Reilly <i class="fas fa-external-link-alt"></i> |
| 103 | + </a> |
| 104 | + </div> |
| 105 | + </div> |
| 106 | + </div> |
| 107 | +</div> |
0 commit comments