#springboot search results
๐ Spring Boot: Use @SpringBootApplication(exclude = โฆ) to disable specific auto-configuration classes. โ One possible reason to do so could be that you have a custom configuration that conflicts with the default. #SpringBoot #JavaDev
๐ก Spring Boot Tip: If you want DTOs to ignore extra JSON fields from clients without breaking your API use @JsonIgnoreProperties(ignoreUnknown = true). #SpringBoot #SoftwareEngineering
๐ Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily. #SpringBoot #JavaDev
๐ Spring Boot: With @DataJpaTest you can test JPA repositories in isolation. @DataJpaTest only loads only the JPA layer and not the entire application context, using an in-memory database (H2), and rolls back transactions after each test. #SpringBoot #Java
๐ก Spring Boot: You can run jobs at fixed intervals without setting up Quartz or external schedulers. #SpringBoot #JavaDev
๐ 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: To better handle circular dependencies, use constructor injection instead of field injection. โ Forces all required dependencies to be provided at creation time, allowing early detection. #SpringBoot #JavaDev
๐ก 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 tip: Use @Profile to group and load beans/configurations in specific environments. #SpringBoot #JavaDev
๐ Day 9 | Java Full Stack Development Journey ->Google Drive Backend ->File upload & storage logic ->Built APIs for upload, download, delete & list files ->Spring Boot + MySQL for file metadata management #Java #SpringBoot #GoogleDriveClone #BackendDevelopment #100DaysOfCod
Needed Solution. The problem I am having is listed below. Please provide a solution how to overcome this situation. #backend #springboot #java #sql #tech
๐ก 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
๐ 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
๐ Stop using final for performance. It does nothing for speed in modern Java. Use final because it is your #1 code quality tool for reliability and safety. It defines intent. This is crucial for Spring Boot apps. Why? ๐งต๐ #Java #SpringBoot #CodeQuality
Spring Boot 4 tip: Collections with nullable elements (List<Nullable String>) help catch NullPointerExceptions at compile-time instead of runtime. No more surprises when processing API responses that might contain null values! ๐ก๏ธ #SpringBoot #javabh
My Quiz App project! Built with React, Spring Boot, Docker, and deployed on GCP. Learned a ton about full-stack and cloud deployment. #SpringBoot #React #Docker #GCP
๐ Spring Boot: You can externalize secrets with "spring.config.import=optional:configserver:" or using another solution like HashiCorp Vault. #SpringBoot
Day 3 of my Spring Boot journey ๐ป Tomorrowโs my first hackathon โ a code-solving event at IUST Pulwama! Been preparing hard with my team Apex Coders. Time to put our skills to the test ๐ #Hackathon #IUST #SpringBoot #CodingJourney
Needed Solution. The problem I am having is listed below. Please provide a solution how to overcome this situation. #backend #springboot #java #sql #tech
๐ Stop using final for performance. It does nothing for speed in modern Java. Use final because it is your #1 code quality tool for reliability and safety. It defines intent. This is crucial for Spring Boot apps. Why? ๐งต๐ #Java #SpringBoot #CodeQuality
Everyone uses SpringBoot -but only a few know what those annotations really do. Unlock the power behind @RestController, @Service, and @Transactional in this quick refresher before your next interview. ๐Read here: medium.com/@BuildCatalystโฆ #SpringBoot #Java #TechInterview
Spring Boot CORS is.gd/Ip4JdC #springboot #java #rest #springframework #springmvc
Just kicked off my #SpringBoot journey! Built my first REST API todayโsmall wins, big dreams! Any tips for a fresher? #LearnInPublic #JavaDev"
Day 21 of #SpringBoot Starter Kit Added Transaction Auditing with AOP ๐ก TX-BEGIN - Transaction start ๐ข TX-COMMIT - Successful commit ๐ด TX-ROLLBACK - Rollback on error One aspect, complete visibility ๐ github.com/patilvishi/sprโฆ #Java #SpringBoot #SpringAOP #BuildInPublic
๐ Spring Boot: Use @SpringBootApplication(exclude = โฆ) to disable specific auto-configuration classes. โ One possible reason to do so could be that you have a custom configuration that conflicts with the default. #SpringBoot #JavaDev
In this blog, you will learn some Docker best practices mainly focussed on Spring Boot applications. You will learn these practices by applying them to a sample application. Enjoy! #java #springboot #docker mydeveloperplanet.com/2022/12/14/sprโฆ
Built Smart Contact Manager ๐ป from a real-life problem! During exams in Amritsar, I forgot my friendโs number ๐ โ so I made a web app to store & manage contacts safely, anytime, anywhere. ๐ก Auto-save feature coming soon! ๐ github.com/adarshrai00/Smโฆ #Java #SpringBoot #WebApp
Native Hibernate/JPA is lot faster than Spring Data JPA for CRUD ops when the data is huge #jpa #springboot
Spent the weekend testing /register, /login, and /test endpoints. Debugged enums, fixed converters, and finally saw a proper JWT token come through. That tiny โ200 OKโ hit different. The base auth system for API Spend is officially stable #buildinpublic #AWS #SpringBoot
Day 2 of my #SpringBoot journey ๐ฑ Spent some time revising OOP concepts and even made my own Custom ArrayList in Java ๐ Feels good to actually understand how things work under the hood! #Java #CodingJourney #LearningInPublic
- logging[dot]level[dot]org.hibernate.stat=debug Use these properties to know whats happening in the query execution in our spring boot application #springboot #java #jpa #hibernate
Itโs finally deployment time Learned so much building this Spring Boot project ,now figuring out how to make it live for the world to see ๐ Any suggestions on where to deploy it? Is AWS free for beginners? ๐ค #BuildInPublic #SpringBoot #Learning
๐ Spring Boot: Use ResponseEntity<T> to get fine-grained control over HTTP responses. You can explicitly specify Status, Headers and Body #SpringBoot
๐ Spring Boot: With @DataJpaTest you can test JPA repositories in isolation. @DataJpaTest only loads only the JPA layer and not the entire application context, using an in-memory database (H2), and rolls back transactions after each test. #SpringBoot #Java
๐ 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 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: Use @SpringBootApplication(exclude = โฆ) to disable specific auto-configuration classes. โ One possible reason to do so could be that you have a custom configuration that conflicts with the default. #SpringBoot #JavaDev
๐ 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 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
๐ก Spring Boot Tip: If you want DTOs to ignore extra JSON fields from clients without breaking your API use @JsonIgnoreProperties(ignoreUnknown = true). #SpringBoot #SoftwareEngineering
๐ก 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
Needed Solution. The problem I am having is listed below. Please provide a solution how to overcome this situation. #backend #springboot #java #sql #tech
๐ Spring Boot tip: With Spring Boot and Spring Security you can secure endpoints easily. #SpringBoot #JavaDev
๐กSpring Boot tip: Use @Profile to group and load beans/configurations in specific environments. #SpringBoot #JavaDev
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
Something went wrong.
Something went wrong.
United States Trends
- 1. Kim Davis 4,428 posts
- 2. Pond 218K posts
- 3. #IDontWantToOverreactBUT N/A
- 4. $BNKK 1,096 posts
- 5. Semper Fi 7,503 posts
- 6. Go Birds 6,440 posts
- 7. Happy 250th 10.6K posts
- 8. #MondayMotivation 41.4K posts
- 9. #MYNZ N/A
- 10. $LMT $450.50 Lockheed F-35 N/A
- 11. $SENS $0.70 Senseonics CGM N/A
- 12. $APDN $0.20 Applied DNA N/A
- 13. Obergefell 3,055 posts
- 14. Obamacare 208K posts
- 15. Good Monday 48.8K posts
- 16. Edmund Fitzgerald 6,158 posts
- 17. Veterans Day 20.6K posts
- 18. Victory Monday 3,243 posts
- 19. #USMC 1,560 posts
- 20. Rudy Giuliani 31.8K posts