Blog post structure --- published: true title: Blog post title layout: post description: # Around 160 chars. Used in <meta name="description"/>, <meta property="og:description"/>, <meta name="twitter:description"/> ogImage: /images/schemaspy_v6-relationships.png thumbnail: /images/thumbnails/tn-schemaspy_v6-relationships.png author: # Your full name. You would need to provide a one-time bio, photo and social media links. tags: - docker - java - jpa - maven - schemaspy - sql comments: true showReadTime: true toc: true signupKey: # I'll fill this ignore: jsonld: true --- {:#overview} ### 1. OVERVIEW Introduction goes here Sample image: ![Retrieve films Sequence Diagram]({{ "/images/dynamic-queries-spring-data-jpa-specification-dvd-rental-restful-endpoints-_api_films-sequence-diagram.png" | absolute_url }}){:title="Retrieve films Sequence Diagram"} *Retrieve films Sequence Diagram* <!-- more --> This is a marker, keep it so that SECTION 2 and below doesn't show in the home page, but remove this explanation. {:#section-2} ### 2. SECTION 2 Section 2 goes here Sample table |Col 1 header|Col 2 header| |---|---| |row 1, col 1|row 1, col 2| |row 2, col 1|row 2, col 2| {:#section-2.1} #### 2.1. Subsection 2.1 Subsection 2.1 goes here {:#section-3} ### 3. SECTION 3 Section 3 goes here Sample java snippet: {:#film_java} *`Film.java`*: ```java @Entity @Table(name = "film", schema = "public") public class Film implements Serializable { @Column(name = "rental_rate", nullable = false, precision = 4) private BigDecimal rentalRate; @Column(name = "release_year") @Lob private String releaseYear; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "film") private Set<FilmCategory> filmCategories = new HashSet<FilmCategory>(0); ... } ``` {:#conclusion} ### 4. CONCLUSION Conclusion goes here {% include newsletter-signup-helpful.html %} {:#source-code} ### 5. SOURCE CODE Accompanying source code for this blog post can be found at: - [https://bitbucket.org/asimio/the-repository](https://bitbucket.org/asimio/the-repository){:target="_blank"} {:#references} ### 6. REFERENCES - [https://reference-url-1](https://reference-url-1){:target="_blank"}{:rel="nofollow"} - [https://reference-url-2](https://reference-url-2){:target="_blank"}{:rel="nofollow"}