#springboot 搜尋結果

🚀 Spring Boot: Use ResponseEntity<T> to get fine-grained control over HTTP responses. You can explicitly specify Status, Headers and Body #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: Use ResponseEntity&amp;lt;T&amp;gt; to get fine-grained control over HTTP responses.

You can explicitly specify Status, Headers and Body
#SpringBoot

🚀 Spring Boot: Enable response compression in Spring Boot with server.compression.enabled=true to reduce payload size. #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: Enable response compression in Spring Boot with server.compression.enabled=true to reduce payload size. #SpringBoot

💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers.
#SpringBoot #JavaDev

💡 Spring Boot tip: Use spring-boot-starter-logging (Logback) for logging, it is already included as default. ✅ spring-boot-starter-logging is already included in most starters (spring-boot-starter-web, spring-boot-starter-data-jpa, etc.) #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot tip: Use spring-boot-starter-logging (Logback) for logging, it is already included as default.

✅ spring-boot-starter-logging is already included in most starters (spring-boot-starter-web, spring-boot-starter-data-jpa, etc.)
#SpringBoot #JavaDev

In Spring Boot, mappers play a key role in transforming data between different object layers — for example, converting an Entity to a DTO. They promote clean architecture, reduce repetitive code, and make applications easier to maintain. #SpringBoot #Java #Mapper #CleanCode

LimaSherzad's tweet image. In Spring Boot, mappers play a key role in transforming data between different object layers — for example, converting an Entity to a DTO.
They promote clean architecture, reduce repetitive code, and make applications easier to maintain.
#SpringBoot 
#Java 
#Mapper
#CleanCode

Spent the day deep-diving into Spring Security & OAuth2 🔐 💡 Learned how Google authentication actually returns user info ⚙️ Understood why we fetch the logged-in user in projects 🔑 Explored BCryptPasswordEncoder() and its role in password security #SpringBoot #Java #Backend

Ansh_Gupta20's tweet image. Spent the day deep-diving into Spring Security &amp;amp; OAuth2 🔐
💡 Learned how Google authentication actually returns user info
⚙️ Understood why we fetch the logged-in user in projects
🔑 Explored BCryptPasswordEncoder() and its role in password security
#SpringBoot #Java #Backend

🚀 Spring Boot: Use spring-boot-starter-mail for sending emails. ✅ It wraps all the necessary configuration and dependencies, making the process of sending emails simple and clear. #SpringBoot

mario_casari's tweet image. 🚀  Spring Boot: Use spring-boot-starter-mail for sending emails.

✅ It wraps all the necessary configuration and dependencies, making the process of sending emails simple and clear.
#SpringBoot

💡 For REST APIs, prefer @RestController over @Controller + @ResponseBody. 🟤 @Controller is used to return views like JSP, or Thymeleaf templates. 🟤 @RestController is used for REST APIs, and it returns data (usually JSON or XML). #SpringBoot

mario_casari's tweet image. 💡 For REST APIs, prefer @RestController over @Controller + @ResponseBody.

🟤 @Controller is used to return views like JSP, or Thymeleaf templates.

🟤 @RestController is used for REST APIs, and it returns data (usually JSON or XML).
#SpringBoot

🚀 Spring Boot: You can enable a smooth shutdown with "server.shutdown=graceful" in your configuration. ✅ It helps you avoid these situations: 🔴 Active HTTP requests failing abruptly 🔴 Database rolling back unexpectedly 🔴 Threads interrupted before finishing #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: You can enable a smooth shutdown with &quot;server.shutdown=graceful&quot; in your configuration.

✅  It helps you avoid these situations:

🔴 Active HTTP requests failing abruptly
🔴 Database rolling back unexpectedly
🔴 Threads interrupted before finishing
#SpringBoot

🚀 Spring Boot: springdoc-openapi automatically generates OpenAPI 3.0 (Swagger) documentation from your Spring Boot REST controllers. You will get: ✅ An interactive Swagger UI ✅ Auto-scanned from your code ✅ Export API docs in JSON/YAML #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: springdoc-openapi automatically generates OpenAPI 3.0 (Swagger) documentation from your Spring Boot REST controllers.

You will get:

✅ An interactive Swagger UI
✅ Auto-scanned from your code
✅ Export API docs in JSON/YAML
#SpringBoot

💡 Spring Boot tip: Use CommandLineRunner for executing startup logic. CommandLineRunner is a Spring Boot interface that can be implemented to run code after the application context is fully initialized. #SpringBoot #Java

mario_casari's tweet image. 💡 Spring Boot tip: Use CommandLineRunner for executing startup logic.

CommandLineRunner is a Spring Boot interface that can be implemented to run code after the application context is fully initialized.
#SpringBoot #Java

Spring Boot: Project structure matters Clean structure = maintainable code. Keep it scalable, readable, and production-ready. #SpringBoot #Java #Backend #CleanArchitecture #SoftwareEngineering

RalePrometix's tweet image. Spring Boot: Project structure matters

Clean structure = maintainable code.

Keep it scalable, readable, and production-ready.

#SpringBoot #Java #Backend #CleanArchitecture #SoftwareEngineering

🚀 Day 3 | Java Full Stack (Microservices Phase) ->Payment Gateway API for transactions ->Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode

MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode

💡 Pin the Spring Boot version in the spring-boot-dependencies BOM to ensure consistent dependency management. ✅ The spring-boot-dependencies BOM allows you to omit versions of libraries that Spring Boot integrates with in your pom.xml. #SpringBoot

mario_casari's tweet image. 💡 Pin the Spring Boot version in the spring-boot-dependencies BOM to ensure consistent dependency management.

✅  The spring-boot-dependencies BOM allows you to omit versions of libraries that Spring Boot integrates with in your pom.xml. 
#SpringBoot

🚀 Advanced Spring Boot Tip 🚀 Enhance your @springboot container image build with #Jlink! 🔥 Set BP_JVM_JLINK_ENABLED to true in the Spring Boot Maven Plugin, and create more efficient and customized and smaller runtime images. paketo.io/docs/howto/jav… #springboot #java

mnhocktweets's tweet image. 🚀 Advanced Spring Boot Tip 🚀

Enhance your @springboot container image build with #Jlink! 🔥

Set BP_JVM_JLINK_ENABLED to true in the Spring Boot Maven Plugin, and create more efficient and customized and smaller runtime images.

paketo.io/docs/howto/jav…

#springboot #java

🚀 I started solving DP problems recently and it’s not something we master overnight 😅 But that’s the beauty of it: consistecy . 💥 Current LeetCode streak: 127 days From today, I’ll keep solving problems daily 💪 Also starting Spring Boot ⚡ #SpringBoot #DP #LeetCode

AmitP9t's tweet image. 🚀 I started solving DP problems recently and it’s not something we master overnight 😅
But that’s the beauty of it: consistecy .

💥 Current LeetCode streak: 127 days 

From today, I’ll keep solving problems daily 💪

Also starting Spring Boot  ⚡
#SpringBoot #DP #LeetCode

Day 17 of #buildinpublic Spring boot Starter Kit Added Security Audit Logging ✅ Now every API call logs who did what and when - fully integrated with JWT Auth 🔐 Clean, production-ready logging 💪 📂 Code: github.com/patilvishi/spr… #SpringBoot #BuildinPublic


B.Tech CSE student (2023–27) looking for an internship as a Java Spring Boot Developer 🔍 Skilled in Java, Spring Boot, and API development. Excited to learn & grow in real-world projects! 🚀 #JavaDeveloper #SpringBoot #Internship


🚀 Excited to start a new Spring & Spring Boot Annotation Series! Each post = one annotation, its purpose & a quick example 💡 🔹 Annotation #1@Component #SpringBoot #Java #Spring #SpringAnnotations #SpringSeries

itsvaibhavp's tweet image. 🚀 Excited to start a new Spring &amp;amp; Spring Boot Annotation Series!
Each post = one annotation, its purpose &amp;amp; a quick example 💡

🔹 Annotation #1 — @Component 

#SpringBoot #Java #Spring #SpringAnnotations #SpringSeries

🚀 I started solving DP problems recently and it’s not something we master overnight 😅 But that’s the beauty of it: consistecy . 💥 Current LeetCode streak: 127 days From today, I’ll keep solving problems daily 💪 Also starting Spring Boot ⚡ #SpringBoot #DP #LeetCode

AmitP9t's tweet image. 🚀 I started solving DP problems recently and it’s not something we master overnight 😅
But that’s the beauty of it: consistecy .

💥 Current LeetCode streak: 127 days 

From today, I’ll keep solving problems daily 💪

Also starting Spring Boot  ⚡
#SpringBoot #DP #LeetCode

🚀 Day 3 | Java Full Stack (Microservices Phase) ->Payment Gateway API for transactions ->Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode

MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode

🚀 The backend API for my HireLink full-stack web app is now live on Render! Built with Spring Boot, PostgreSQL, and Docker powering seamless connections between job seekers and employers. #SpringBoot #Render #PostgreSQL #FullStack

seye_victor4's tweet image. 🚀 The backend API for my HireLink full-stack web app is now live on Render!
Built with Spring Boot, PostgreSQL, and Docker powering seamless connections between job seekers and employers. #SpringBoot #Render #PostgreSQL  #FullStack

I’ve completed the repositories for my backend and planned the controller design — the incoming URLs and requests. Is it a good approach to create the service layer after the controller to avoid confusion or revamping later? #springboot #backend #java #tech #learninpublic


This is gold. I’ve always defaulted to cron jobs, but @Scheduled in Spring Boot feels so natural for small recurring jobs. Example: @Scheduled(cron = "0 0/5 * * * ?") // every 5 mins Big fan of how Spring keeps things simple 🙏 #SpringBoot #JavaDev


Day 37 ✅ — Revision Week Complete Wrapped up my revision week today! 🔁 From arrays to stacks — revised all the core DSA patterns. Starting tomorrow: 🌳 Diving deep into Trees & Graphs 💻 Beginning Frontend + React learning journey #100DaysOfCode #Java #SpringBoot #DSA


Day 17 of #buildinpublic Spring boot Starter Kit Added Security Audit Logging ✅ Now every API call logs who did what and when - fully integrated with JWT Auth 🔐 Clean, production-ready logging 💪 📂 Code: github.com/patilvishi/spr… #SpringBoot #BuildinPublic


💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers.
#SpringBoot #JavaDev

@Component marks a class for Spring to auto-detect and create a bean. @Bean defines a bean manually inside a @Configuration class with custom creation logic. 👉 @Component = auto bean via scanning 👉 @Bean = manual bean via method #SpringBoot #Java #SpringFramework


The main idea for documenting our back-end RESTful APIs is to communicate to third-party developers what our endpoints are doing. codersite.dev/documenting-re… #springboot #openapi #restful #jpa #java #programming #algorithm #software #api


#java experimented with quarkus (jvm prod single jar) for an internal dash app against spring boot - Identical functionality server and queries (jpa vs panache) - feels slower for user, 400MB (SB) vs 329MB (Q). a little less code .....#quarkus #springboot


Spent the day deep-diving into Spring Security & OAuth2 🔐 💡 Learned how Google authentication actually returns user info ⚙️ Understood why we fetch the logged-in user in projects 🔑 Explored BCryptPasswordEncoder() and its role in password security #SpringBoot #Java #Backend

Ansh_Gupta20's tweet image. Spent the day deep-diving into Spring Security &amp;amp; OAuth2 🔐
💡 Learned how Google authentication actually returns user info
⚙️ Understood why we fetch the logged-in user in projects
🔑 Explored BCryptPasswordEncoder() and its role in password security
#SpringBoot #Java #Backend

Got auto quiz submission working for my quiz app 😤🔥 Scheduler checks active quizzes every sec, auto-submits on timeout, saves results & pushes real-time updates via WebSocket! #SpringBoot #Java #WebSocket #IndieDev


My top 5 Spring Boot dependencies. When I start a new Spring Boot project, these 5 dependencies come first: 1️⃣ spring-boot-starter-web 2️⃣ spring-boot-starter-validation 3️⃣ spring-boot-starter-data-jpa 4️⃣ spring-boot-starter-test 5️⃣ spring-boot-devtools #SpringBoot


🚀 Spring Boot: Enable response compression in Spring Boot with server.compression.enabled=true to reduce payload size. #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: Enable response compression in Spring Boot with server.compression.enabled=true to reduce payload size. #SpringBoot

Aprendiendo cosas chidas desde temprano #java #springboot #developer #studytime

_axtone's tweet image. Aprendiendo cosas chidas desde temprano #java #springboot #developer #studytime

Spring Boot: Project structure matters Clean structure = maintainable code. Keep it scalable, readable, and production-ready. #SpringBoot #Java #Backend #CleanArchitecture #SoftwareEngineering

RalePrometix's tweet image. Spring Boot: Project structure matters

Clean structure = maintainable code.

Keep it scalable, readable, and production-ready.

#SpringBoot #Java #Backend #CleanArchitecture #SoftwareEngineering

💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev

mario_casari's tweet image. 💡 Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers.
#SpringBoot #JavaDev

🚀 Spring Boot: You can enable a smooth shutdown with "server.shutdown=graceful" in your configuration. ✅ It helps you avoid these situations: 🔴 Active HTTP requests failing abruptly 🔴 Database rolling back unexpectedly 🔴 Threads interrupted before finishing #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: You can enable a smooth shutdown with &quot;server.shutdown=graceful&quot; in your configuration.

✅  It helps you avoid these situations:

🔴 Active HTTP requests failing abruptly
🔴 Database rolling back unexpectedly
🔴 Threads interrupted before finishing
#SpringBoot

🚀 Big news for Java devs: Spring Boot 4 + Spring Framework 7 are coming this November (2025)! Here’s what’s new and why it matters 👇 #SpringBoot #SpringFramework #Java

loiane's tweet image. 🚀 Big news for Java devs: Spring Boot 4 + Spring Framework 7 are coming this November (2025)!
Here’s what’s new and why it matters 👇

#SpringBoot #SpringFramework #Java

🚀 I started solving DP problems recently and it’s not something we master overnight 😅 But that’s the beauty of it: consistecy . 💥 Current LeetCode streak: 127 days From today, I’ll keep solving problems daily 💪 Also starting Spring Boot ⚡ #SpringBoot #DP #LeetCode

AmitP9t's tweet image. 🚀 I started solving DP problems recently and it’s not something we master overnight 😅
But that’s the beauty of it: consistecy .

💥 Current LeetCode streak: 127 days 

From today, I’ll keep solving problems daily 💪

Also starting Spring Boot  ⚡
#SpringBoot #DP #LeetCode

🚀 Spring Boot: Use spring-boot-starter-mail for sending emails. ✅ It wraps all the necessary configuration and dependencies, making the process of sending emails simple and clear. #SpringBoot

mario_casari's tweet image. 🚀  Spring Boot: Use spring-boot-starter-mail for sending emails.

✅ It wraps all the necessary configuration and dependencies, making the process of sending emails simple and clear.
#SpringBoot

I fxing hate this hide and seek. #Java #springboot

humbihari_'s tweet image. I fxing hate this hide and seek.
#Java #springboot

🚀 Spring Boot: springdoc-openapi automatically generates OpenAPI 3.0 (Swagger) documentation from your Spring Boot REST controllers. You will get: ✅ An interactive Swagger UI ✅ Auto-scanned from your code ✅ Export API docs in JSON/YAML #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: springdoc-openapi automatically generates OpenAPI 3.0 (Swagger) documentation from your Spring Boot REST controllers.

You will get:

✅ An interactive Swagger UI
✅ Auto-scanned from your code
✅ Export API docs in JSON/YAML
#SpringBoot

🚀 Day 3 | Java Full Stack (Microservices Phase) ->Payment Gateway API for transactions ->Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode

MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode
MayankSang253's tweet image. 🚀 Day 3 | Java Full Stack (Microservices Phase)
-&amp;gt;Payment Gateway API for transactions
-&amp;gt;Notification Service to send updates after successful payments#Java #SpringBoot #Microservices #PaymentGateway #NotificationService #BackendDevelopment #FullStackDeveloper #100DaysOfCode

Spent the day deep-diving into Spring Security & OAuth2 🔐 💡 Learned how Google authentication actually returns user info ⚙️ Understood why we fetch the logged-in user in projects 🔑 Explored BCryptPasswordEncoder() and its role in password security #SpringBoot #Java #Backend

Ansh_Gupta20's tweet image. Spent the day deep-diving into Spring Security &amp;amp; OAuth2 🔐
💡 Learned how Google authentication actually returns user info
⚙️ Understood why we fetch the logged-in user in projects
🔑 Explored BCryptPasswordEncoder() and its role in password security
#SpringBoot #Java #Backend

🚀 Spring Boot: Use ResponseEntity<T> to get fine-grained control over HTTP responses. You can explicitly specify Status, Headers and Body #SpringBoot

mario_casari's tweet image. 🚀 Spring Boot: Use ResponseEntity&amp;lt;T&amp;gt; to get fine-grained control over HTTP responses.

You can explicitly specify Status, Headers and Body
#SpringBoot

In Spring Boot, mappers play a key role in transforming data between different object layers — for example, converting an Entity to a DTO. They promote clean architecture, reduce repetitive code, and make applications easier to maintain. #SpringBoot #Java #Mapper #CleanCode

LimaSherzad's tweet image. In Spring Boot, mappers play a key role in transforming data between different object layers — for example, converting an Entity to a DTO.
They promote clean architecture, reduce repetitive code, and make applications easier to maintain.
#SpringBoot 
#Java 
#Mapper
#CleanCode

Day - 80✨ of #100DaysOfCode: Started my Spring boot & Framework journey! Learned Spring :- -Today I started To Build a small Todo Project -I created The Project and also folder setup #springboot

Annishivakumara's tweet image. Day - 80✨ of #100DaysOfCode: Started my Spring boot &amp;amp; Framework journey!  Learned Spring :-  -Today I started To Build a small Todo Project   -I created The Project and also folder setup
#springboot

After a long break, I’m back on track! 🚀 Today, I built a User Management API using Spring Boot 🛠️ Excited to continue my learning journey and build even more projects ahead! 💻✨ #SpringBoot #Java #WebDev #100DaysOfCode #buildinpublic #LearnInPublic #HustleWithShahab

xsh_shahab's tweet image. After a long break, I’m back on track! 🚀
Today, I built a User Management API using Spring Boot 🛠️
Excited to continue my learning journey and build even more projects ahead! 💻✨
#SpringBoot #Java #WebDev #100DaysOfCode #buildinpublic  #LearnInPublic  #HustleWithShahab

Loading...

Something went wrong.


Something went wrong.


United States Trends