|
| 1 | +/** |
| 2 | + * This content is released under the MIT License (MIT) |
| 3 | + * |
| 4 | + * Copyright (c) 2018, canchito-dev |
| 5 | + * |
| 6 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | + * of this software and associated documentation files (the "Software"), to deal |
| 8 | + * in the Software without restriction, including without limitation the rights |
| 9 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | + * copies of the Software, and to permit persons to whom the Software is |
| 11 | + * furnished to do so, subject to the following conditions: |
| 12 | + * |
| 13 | + * The above copyright notice and this permission notice shall be included in |
| 14 | + * all copies or substantial portions of the Software. |
| 15 | + * |
| 16 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | + * THE SOFTWARE. |
| 23 | + * |
| 24 | + * @author José Carlos Mendoza Prego |
| 25 | + * @copyright Copyright (c) 2018, canchito-dev (http://www.canchito-dev.com) |
| 26 | + * @license http://opensource.org/licenses/MIT MIT License |
| 27 | + * @link https://github.com/canchito-dev/rest-api-with-with-spring-jpa-criteria |
| 28 | + **/ |
| 29 | +package com.canchitodev.example; |
| 30 | + |
| 31 | +import java.util.ArrayList; |
| 32 | +import java.util.List; |
| 33 | + |
| 34 | +import org.springframework.beans.factory.InitializingBean; |
| 35 | +import org.springframework.boot.SpringApplication; |
| 36 | +import org.springframework.boot.autoconfigure.SpringBootApplication; |
| 37 | +import org.springframework.context.annotation.Bean; |
| 38 | + |
| 39 | +import com.canchitodev.example.domain.Author; |
| 40 | +import com.canchitodev.example.domain.Books; |
| 41 | +import com.canchitodev.example.service.AuthorService; |
| 42 | + |
| 43 | +@SpringBootApplication |
| 44 | +public class RestApiWithWithSpringJpaCriteriaApplication { |
| 45 | + |
| 46 | + public static void main(String[] args) { |
| 47 | + SpringApplication.run(RestApiWithWithSpringJpaCriteriaApplication.class, args); |
| 48 | + } |
| 49 | + |
| 50 | + @Bean |
| 51 | + InitializingBean authorInitializer(final AuthorService authorService) { |
| 52 | + |
| 53 | + return new InitializingBean() { |
| 54 | + public void afterPropertiesSet() throws Exception { |
| 55 | + List<Books> books = new ArrayList<Books>(); |
| 56 | + Books book1 = new Books(); |
| 57 | + Books book2 = new Books(); |
| 58 | + Books book3 = new Books(); |
| 59 | + |
| 60 | + // save first record |
| 61 | + Author author = new Author(); |
| 62 | + author.setLastName("Doe"); |
| 63 | + author. setMail( "[email protected]"); |
| 64 | + author.setFirstName("John"); |
| 65 | + author.setTelephone("123456"); |
| 66 | + |
| 67 | + book1.setPrice("12,94€"); |
| 68 | + book1.setTitle("Book Title 1"); |
| 69 | + book1.setYear(2009); |
| 70 | + book1.setAuthor(author); |
| 71 | + books.add(book1); |
| 72 | + |
| 73 | + book2.setPrice("23,87€"); |
| 74 | + book2.setTitle("Book Title 2"); |
| 75 | + book2.setYear(1999); |
| 76 | + book2.setAuthor(author); |
| 77 | + books.add(book2); |
| 78 | + |
| 79 | + book3.setPrice("20,18€"); |
| 80 | + book3.setTitle("Book Title 5"); |
| 81 | + book3.setYear(1990); |
| 82 | + book3.setAuthor(author); |
| 83 | + books.add(book3); |
| 84 | + |
| 85 | + author.setBooks(books); |
| 86 | + authorService.save(author); |
| 87 | + |
| 88 | + // save second record |
| 89 | + books = new ArrayList<Books>(); |
| 90 | + book1 = new Books(); |
| 91 | + book2 = new Books(); |
| 92 | + book3 = new Books(); |
| 93 | + |
| 94 | + author = new Author(); |
| 95 | + author.setLastName("Perez"); |
| 96 | + author. setMail( "[email protected]"); |
| 97 | + author.setFirstName("Juan"); |
| 98 | + author.setTelephone("098765"); |
| 99 | + |
| 100 | + book1.setPrice("6,99€"); |
| 101 | + book1.setTitle("Book Title 3"); |
| 102 | + book1.setYear(2017); |
| 103 | + book1.setAuthor(author); |
| 104 | + books.add(book1); |
| 105 | + |
| 106 | + book2.setPrice("9,76€"); |
| 107 | + book2.setTitle("Book Title 4"); |
| 108 | + book2.setYear(1990); |
| 109 | + book2.setAuthor(author); |
| 110 | + books.add(book2); |
| 111 | + |
| 112 | + book3.setPrice("19,82€"); |
| 113 | + book3.setTitle("Book Title 6"); |
| 114 | + book3.setYear(1999); |
| 115 | + book3.setAuthor(author); |
| 116 | + books.add(book3); |
| 117 | + |
| 118 | + author.setBooks(books); |
| 119 | + authorService.save(author); |
| 120 | + |
| 121 | + // save third record |
| 122 | + books = new ArrayList<Books>(); |
| 123 | + book1 = new Books(); |
| 124 | + book2 = new Books(); |
| 125 | + book3 = new Books(); |
| 126 | + |
| 127 | + author = new Author(); |
| 128 | + author.setLastName("Escobar"); |
| 129 | + author. setMail( "[email protected]"); |
| 130 | + author.setFirstName("Pablo"); |
| 131 | + author.setTelephone("13579"); |
| 132 | + |
| 133 | + book1.setPrice("9,00€"); |
| 134 | + book1.setTitle("Book Title 7"); |
| 135 | + book1.setYear(2010); |
| 136 | + book1.setAuthor(author); |
| 137 | + books.add(book1); |
| 138 | + |
| 139 | + book2.setPrice("8,56€"); |
| 140 | + book2.setTitle("Book Title 8"); |
| 141 | + book2.setYear(1991); |
| 142 | + book2.setAuthor(author); |
| 143 | + books.add(book2); |
| 144 | + |
| 145 | + book3.setPrice("14,22€"); |
| 146 | + book3.setTitle("Book Title 9"); |
| 147 | + book3.setYear(1987); |
| 148 | + book3.setAuthor(author); |
| 149 | + books.add(book3); |
| 150 | + |
| 151 | + author.setBooks(books); |
| 152 | + authorService.save(author); |
| 153 | + } |
| 154 | + }; |
| 155 | + } |
| 156 | +} |
0 commit comments