Skip to content

Commit 19c823e

Browse files
authored
Add files via upload
1 parent 5f9d457 commit 19c823e

21 files changed

+1806
-0
lines changed

pom.xml

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.canchitodev.example</groupId>
7+
<artifactId>rest-api-with-with-spring-jpa-criteria</artifactId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
<packaging>war</packaging>
10+
11+
<name>rest-api-with-with-spring-jpa-criteria</name>
12+
<description>Canchito-Dev demo project for building a REST API with Spring and JPA criteria</description>
13+
14+
<parent>
15+
<groupId>org.springframework.boot</groupId>
16+
<artifactId>spring-boot-starter-parent</artifactId>
17+
<version>2.0.1.RELEASE</version>
18+
<relativePath/> <!-- lookup parent from repository -->
19+
</parent>
20+
21+
<properties>
22+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24+
<java.version>1.8</java.version>
25+
</properties>
26+
27+
<dependencies>
28+
<dependency>
29+
<groupId>org.springframework.boot</groupId>
30+
<artifactId>spring-boot-starter</artifactId>
31+
</dependency>
32+
33+
<dependency>
34+
<groupId>org.springframework.boot</groupId>
35+
<artifactId>spring-boot-starter-test</artifactId>
36+
<scope>test</scope>
37+
</dependency>
38+
39+
<!-- Starter for using Spring Data JPA with Hibernate -->
40+
<dependency>
41+
<groupId>org.springframework.boot</groupId>
42+
<artifactId>spring-boot-starter-data-jpa</artifactId>
43+
</dependency>
44+
<!-- Starter for using Spring Data JPA with Hibernate -->
45+
46+
<!-- Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container -->
47+
<dependency>
48+
<groupId>org.springframework.boot</groupId>
49+
<artifactId>spring-boot-starter-web</artifactId>
50+
</dependency>
51+
<!-- Starter for building web, including RESTful, applications using Spring MVC. Uses Tomcat as the default embedded container -->
52+
53+
<dependency>
54+
<groupId>com.h2database</groupId>
55+
<artifactId>h2</artifactId>
56+
<scope>runtime</scope>
57+
</dependency>
58+
59+
<!-- <dependency> -->
60+
<!-- <groupId>mysql</groupId> -->
61+
<!-- <artifactId>mysql-connector-java</artifactId> -->
62+
<!-- <scope>runtime</scope> -->
63+
<!-- </dependency> -->
64+
65+
<dependency>
66+
<groupId>org.springframework.boot</groupId>
67+
<artifactId>spring-boot-starter-tomcat</artifactId>
68+
<scope>provided</scope>
69+
</dependency>
70+
</dependencies>
71+
72+
<build>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.springframework.boot</groupId>
76+
<artifactId>spring-boot-maven-plugin</artifactId>
77+
</plugin>
78+
</plugins>
79+
</build>
80+
81+
<url>https://github.com/canchito-dev/rest-api-with-with-spring-jpa-criteria</url>
82+
83+
<issueManagement>
84+
<url>https://github.com/canchito-dev/rest-api-with-with-spring-jpa-criteria/issues</url>
85+
<system>Canchito Development</system>
86+
</issueManagement>
87+
88+
<organization>
89+
<name>Canchito Development</name>
90+
<url>http://www.canchito-dev.com</url>
91+
</organization>
92+
93+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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 org.springframework.boot.builder.SpringApplicationBuilder;
32+
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
33+
34+
public class ServletInitializer extends SpringBootServletInitializer {
35+
36+
@Override
37+
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
38+
return application.sources(RestApiWithWithSpringJpaCriteriaApplication.class);
39+
}
40+
41+
}

0 commit comments

Comments
 (0)