-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a simple codestart for hibernate orm rest data in order to genera…
…te REST resources for a simple entity
- Loading branch information
1 parent
de74fa3
commit 52e8ad9
Showing
10 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
.../extension-codestarts/hibernate-orm-rest-data-codestart/base/README.tpl.qute.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{#include readme-header /} | ||
|
12 changes: 12 additions & 0 deletions
12
...s/codestarts/quarkus/extension-codestarts/hibernate-orm-rest-data-codestart/codestart.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: hibernate-orm-rest-data-codestart | ||
ref: hibernate-orm-rest-data | ||
tags: extension-codestart | ||
type: code | ||
metadata: | ||
title: REST Data with Panache | ||
description: Generating Jakarta REST resources with Panache | ||
related-guide-section: https://quarkus.io/guides/rest-data-panache | ||
language: | ||
base: | ||
dependencies: | ||
- io.quarkus:quarkus-hibernate-orm-rest-data-panache |
30 changes: 30 additions & 0 deletions
30
...arts/hibernate-orm-rest-data-codestart/java/src/main/java/org/acme/MyEntity.tpl.qute.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package org.acme; | ||
|
||
import io.quarkus.hibernate.orm.panache.PanacheEntity; | ||
import jakarta.persistence.Entity; | ||
|
||
|
||
/** | ||
* Example JPA entity defined as a Panache Entity. | ||
* An ID field of Long type is provided, if you want to define your own ID field extends <code>PanacheEntityBase</code> instead. | ||
* | ||
* This uses the active record pattern, you can also use the repository pattern instead: | ||
* {@see https://quarkus.io/guides/hibernate-orm-panache#solution-2-using-the-repository-pattern}. | ||
* | ||
* Usage (more example on the documentation) | ||
* | ||
* \{@code | ||
* public void doSomething() { | ||
* MyEntity entity1 = new MyEntity(); | ||
* entity1.field = "field-1"; | ||
* entity1.persist(); | ||
* | ||
* List<MyEntity> entities = MyEntity.listAll(); | ||
* } | ||
* } | ||
*/ | ||
@Entity | ||
public class MyEntity extends PanacheEntity { | ||
public String field; | ||
} | ||
|
6 changes: 6 additions & 0 deletions
6
...ernate-orm-rest-data-codestart/java/src/main/java/org/acme/MyEntityResource.tpl.qute.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.acme; | ||
|
||
import io.quarkus.hibernate.orm.rest.data.panache.PanacheEntityResource; | ||
|
||
public interface MyEntityResource extends PanacheEntityResource<MyEntity, Long> { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...src/test/java/io/quarkus/devtools/codestarts/quarkus/HibernateOrmRestDataCodestartIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package io.quarkus.devtools.codestarts.quarkus; | ||
|
||
import static io.quarkus.devtools.codestarts.quarkus.QuarkusCodestartCatalog.Language.JAVA; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.devtools.testing.codestarts.QuarkusCodestartTest; | ||
import io.quarkus.maven.dependency.ArtifactKey; | ||
|
||
public class HibernateOrmRestDataCodestartIT { | ||
|
||
@RegisterExtension | ||
public static QuarkusCodestartTest codestartTest = QuarkusCodestartTest.builder() | ||
.codestarts("hibernate-orm-rest-data") | ||
.extension(ArtifactKey.ga("io.quarkus", "quarkus-jdbc-h2")) | ||
.extension(ArtifactKey.ga("io.quarkus", "quarkus-resteasy-reactive-jackson")) | ||
.languages(JAVA) | ||
.build(); | ||
|
||
@Test | ||
void testContent() throws Throwable { | ||
codestartTest.checkGeneratedSource(JAVA, "org.acme.MyEntity"); | ||
codestartTest.checkGeneratedSource(JAVA, "org.acme.MyEntityResource"); | ||
} | ||
|
||
@Test | ||
void testBuild() throws Throwable { | ||
codestartTest.buildAllProjects(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...__/HibernateOrmRestDataCodestartIT/testContent/src_main_java_ilove_quark_us_MyEntity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package ilove.quark.us; | ||
|
||
import io.quarkus.hibernate.orm.panache.PanacheEntity; | ||
import jakarta.persistence.Entity; | ||
|
||
|
||
/** | ||
* Example JPA entity defined as a Panache Entity. | ||
* An ID field of Long type is provided, if you want to define your own ID field extends <code>PanacheEntityBase</code> instead. | ||
* | ||
* This uses the active record pattern, you can also use the repository pattern instead: | ||
* . | ||
* | ||
* Usage (more example on the documentation) | ||
* | ||
* {@code | ||
* public void doSomething() { | ||
* MyEntity entity1 = new MyEntity(); | ||
* entity1.field = "field-1"; | ||
* entity1.persist(); | ||
* | ||
* List<MyEntity> entities = MyEntity.listAll(); | ||
* } | ||
* } | ||
*/ | ||
@Entity | ||
public class MyEntity extends PanacheEntity { | ||
public String field; | ||
} | ||
|
6 changes: 6 additions & 0 deletions
6
...nateOrmRestDataCodestartIT/testContent/src_main_java_ilove_quark_us_MyEntityResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package ilove.quark.us; | ||
|
||
import io.quarkus.hibernate.orm.rest.data.panache.PanacheEntityResource; | ||
|
||
public interface MyEntityResource extends PanacheEntityResource<MyEntity, Long> { | ||
} |
6 changes: 6 additions & 0 deletions
6
...s/__snapshots__/HibernateOrmRestDataCodestartIT/testContent/src_main_resources_import.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-- This file allow to write SQL commands that will be emitted in test and dev. | ||
-- The commands are commented as their support depends of the database | ||
-- insert into myentity (id, field) values(1, 'field-1'); | ||
-- insert into myentity (id, field) values(2, 'field-2'); | ||
-- insert into myentity (id, field) values(3, 'field-3'); | ||
-- alter sequence myentity_seq restart with 4; |