<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rrezart Prebreza</title>
    <description>The latest articles on DEV Community by Rrezart Prebreza (@rrezart_prebreza).</description>
    <link>https://dev.to/rrezart_prebreza</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3641296%2Ffac57b07-d4d6-4e20-aa0a-ca3d84ded68e.jpg</url>
      <title>DEV Community: Rrezart Prebreza</title>
      <link>https://dev.to/rrezart_prebreza</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rrezart_prebreza"/>
    <language>en</language>
    <item>
      <title>REST API Generator</title>
      <dc:creator>Rrezart Prebreza</dc:creator>
      <pubDate>Tue, 07 Apr 2026 13:15:56 +0000</pubDate>
      <link>https://dev.to/rrezart_prebreza/rest-api-generator-5577</link>
      <guid>https://dev.to/rrezart_prebreza/rest-api-generator-5577</guid>
      <description>&lt;p&gt;After days of work, REST API Generator is now live on a public test server.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://rest-api-generator-ag0z.onrender.com" rel="noopener noreferrer"&gt;https://rest-api-generator-ag0z.onrender.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;No install. No account. Open it in your browser, write a plain-English description of your API, and get a complete Spring Boot 3 project in 30 seconds.&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
"Create an API for Product with name, price (decimal, min 0), belongs to Category"&lt;/p&gt;

&lt;p&gt;What gets generated:&lt;br&gt;
→ Entity (JPA, auditing, relationships)&lt;br&gt;
→ DTO (Bean Validation from your prompt)&lt;br&gt;
→ Service (@Transactional, pagination, filter)&lt;br&gt;
→ Controller (proper HTTP status codes, &lt;a class="mentioned-user" href="https://dev.to/valid"&gt;@valid&lt;/a&gt;)&lt;br&gt;
→ Repository (JpaSpecificationExecutor)&lt;br&gt;
→ MapStruct Mapper&lt;br&gt;
→ GlobalExceptionHandler (404, 400, 500)&lt;br&gt;
→ Flyway migration SQL&lt;br&gt;
→ Dockerfile + docker-compose.yml&lt;br&gt;
→ Unit tests + MockMvc integration tests&lt;/p&gt;

&lt;p&gt;I am actively improving it and I would love your feedback.&lt;/p&gt;

&lt;p&gt;Does it work for your use case?&lt;br&gt;
What is missing?&lt;br&gt;
What would make this useful for your team?&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://rest-api-generator-ag0z.onrender.com" rel="noopener noreferrer"&gt;https://rest-api-generator-ag0z.onrender.com&lt;/a&gt;&lt;br&gt;
📦 &lt;a href="https://github.com/rrezartprebreza/rest-api-generator" rel="noopener noreferrer"&gt;https://github.com/rrezartprebreza/rest-api-generator&lt;/a&gt;&lt;/p&gt;

</description>
      <category>springboot</category>
      <category>java</category>
      <category>opensource</category>
      <category>backenddevelopment</category>
    </item>
    <item>
      <title>REST API Generator with Spring Boot and Spring AI</title>
      <dc:creator>Rrezart Prebreza</dc:creator>
      <pubDate>Fri, 27 Feb 2026 09:33:59 +0000</pubDate>
      <link>https://dev.to/rrezart_prebreza/rest-api-generator-with-spring-boot-and-spring-ai-3226</link>
      <guid>https://dev.to/rrezart_prebreza/rest-api-generator-with-spring-boot-and-spring-ai-3226</guid>
      <description>&lt;p&gt;Hey everyone, I started building a REST API Generator with Spring Boot and Spring AI that turns prompts into real backend projects.&lt;br&gt;
Instead of starting from scratch, you can already generate: &lt;br&gt;
• Controllers&lt;br&gt;
• Services&lt;br&gt;
• Repositories&lt;br&gt;
• DTOs&lt;br&gt;
• Validation&lt;br&gt;
• Tests&lt;br&gt;
• OpenAPI docs&lt;br&gt;
• Docker setup&lt;br&gt;
Still improving it, but it’s already useful for reducing boilerplate and moving faster.&lt;br&gt;
Check it out on GitHub:&lt;br&gt;
&lt;a href="https://lnkd.in/djXbRCm5" rel="noopener noreferrer"&gt;https://lnkd.in/djXbRCm5&lt;/a&gt;&lt;br&gt;
If you have ideas or feedback, I’d love to hear them.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>api</category>
      <category>java</category>
      <category>springboot</category>
    </item>
    <item>
      <title>JAI Router - lightweight Spring Boot routing starter (open for contributors)</title>
      <dc:creator>Rrezart Prebreza</dc:creator>
      <pubDate>Tue, 02 Dec 2025 13:25:07 +0000</pubDate>
      <link>https://dev.to/rrezart_prebreza/jai-router-lightweight-spring-boot-routing-starter-open-for-contributors-379b</link>
      <guid>https://dev.to/rrezart_prebreza/jai-router-lightweight-spring-boot-routing-starter-open-for-contributors-379b</guid>
      <description>&lt;p&gt;JAI Router is a minimal Spring Boot starter that centralizes dynamic route registration and exposes a small admin API for runtime routing. The project is ready for contributors — see CONTRIBUTING.md and issues labeled good first issue and help wanted.&lt;/p&gt;

&lt;p&gt;Problem&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Dynamic route registration is often scattered across services and hard to test.&lt;/li&gt;
&lt;li&gt;Existing solutions introduce heavy dependencies or tightly couple to framework internals.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What JAI Router does&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Provides a small, testable API to register and manage routes at runtime.&lt;/li&gt;
&lt;li&gt;Integrates as a Spring Boot starter with minimal dependencies.&lt;/li&gt;
&lt;li&gt;Keeps route storage and dispatching modular and easy to mock in tests.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Key features&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Runtime route registration and removal.&lt;/li&gt;
&lt;li&gt;Pluggable route matching and handler resolution.&lt;/li&gt;
&lt;li&gt;Small API surface suitable for microservices and integration tests
.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Quickstart&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Clone the repo: git clone hhttps://github.com/JAI-create-spec/JAI-Router/tree/develop&lt;/li&gt;
&lt;li&gt;Run locally: ./gradlew bootRun (Java 17)&lt;/li&gt;
&lt;li&gt;See README.md for quick-start snippets and example endpoints.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example usage&lt;br&gt;
Register a route via the admin API and validate it with an integration test. See README.md for concrete request and response examples.&lt;/p&gt;

&lt;p&gt;How to contribute&lt;br&gt;
Read CONTRIBUTING.md for setup, tests, and branch conventions.&lt;/p&gt;

&lt;p&gt;Pick a starter issue labeled good first issue or help wanted.&lt;/p&gt;

&lt;p&gt;Open small PRs with tests; maintainers aim to review quickly.&lt;/p&gt;

&lt;p&gt;Repo and license&lt;br&gt;
Repository: &lt;a href="https://github.com/JAI-create-spec/JAI-Router/tree/develop" rel="noopener noreferrer"&gt;https://github.com/JAI-create-spec/JAI-Router/tree/develop&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;License: see LICENSE&lt;/p&gt;

&lt;p&gt;Call to action&lt;br&gt;
If you work on Spring Boot routing or infrastructure, try the quickstart and pick a starter issue — contributions are welcome.&lt;/p&gt;

</description>
      <category>java</category>
      <category>springboot</category>
      <category>ai</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
