#springboot 搜尋結果
🚀 Spring Boot: Use ResponseEntity<T> 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
💡 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
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
🚀 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
🚀 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
🚀 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
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
💡 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
🚀 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
13 Spring Boot Actuator Interview Questions Answers for 5 Years Experienced dlvr.it/TNvMG8 #interviewquestions #springboot
🚀 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
🚀 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
@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
Spring Boot OpenAPI and OAuth2 codersite.dev/spring-boot-oa… #springboot #java #programming #coding #oauth2 #developer #api #reactive
#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
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 Security Auto-Configuration is.gd/wJJdO6 #springmvc #rest #springboot #java #springframework
🚀 Spring Boot: Enable response compression in Spring Boot with server.compression.enabled=true to reduce payload size. #SpringBoot
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
🚀 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
🚀 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
🚀 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
🚀 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
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
🚀 Spring Boot: Use ResponseEntity<T> 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
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
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
Something went wrong.
Something went wrong.
United States Trends
- 1. Austin Reaves 44.6K posts
- 2. Steelers 85K posts
- 3. Tomlin 12.5K posts
- 4. Packers 66.7K posts
- 5. Tucker Kraft 15.5K posts
- 6. Jordan Love 16.9K posts
- 7. Derry 20.1K posts
- 8. #GoPackGo 10.7K posts
- 9. #BaddiesAfricaReunion 9,825 posts
- 10. #breachlan2 2,993 posts
- 11. Zayne 20.9K posts
- 12. Pretty P 4,100 posts
- 13. #LakeShow 3,767 posts
- 14. Dolly 12.7K posts
- 15. #LaGranjaVIP 71.2K posts
- 16. Rodgers 38.8K posts
- 17. Teryl Austin 2,178 posts
- 18. yixing 10.8K posts
- 19. Sabonis 2,512 posts
- 20. yeonjun 52.8K posts