#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

mario_casari's tweet image. ๐Ÿš€ 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

mario_casari's tweet image. ๐Ÿ’ก 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

mario_casari's tweet image. ๐Ÿš€ 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

mario_casari's tweet image. ๐Ÿš€ 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

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: 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

๐Ÿ’ก 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

mario_casari's tweet image. ๐Ÿ’ก 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

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 tip: Use @Profile to group and load beans/configurations in specific environments. #SpringBoot #JavaDev

mario_casari's tweet image. ๐Ÿ’ก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

sardinefis's tweet image. 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

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

๐Ÿš€ 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

๐Ÿ›‘ 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

therealdanvega's tweet image. Spring Boot 4 tip: Collections with nullable elements (List&amp;lt;Nullable String&amp;gt;) help catch NullPointerExceptions at compile-time instead of runtime. No more surprises when processing API responses that might contain null values! ๐Ÿ›ก๏ธ #SpringBoot #javabh

๐Ÿ’กSpring Boot tip: Use H2 if you need an in-memory database for dev/testing. #SpringBoot #JavaDev

mario_casari's tweet image. ๐Ÿ’กSpring Boot tip: Use H2 if you need an in-memory   database for dev/testing.
 #SpringBoot #JavaDev

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

mario_casari's tweet image. ๐Ÿš€ Spring Boot: You can externalize secrets with &quot;spring.config.import=optional:configserver:&quot; 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

luffy_69a's tweet image. 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

sardinefis's tweet image. 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


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

mario_casari's tweet image. ๐Ÿš€ 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

luffy_69a's tweet image. 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


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

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

๐Ÿš€ 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: 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

mario_casari's tweet image. ๐Ÿš€ 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

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 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: 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

mario_casari's tweet image. ๐Ÿš€ 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

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

๐Ÿ’ก 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

๐Ÿ’ก Spring Boot Tip: If you want DTOs to ignore extra JSON fields from clients without breaking your API use @JsonIgnoreProperties(ignoreUnknown = true). #SpringBoot #SoftwareEngineering

mario_casari's tweet image. ๐Ÿ’ก Spring Boot Tip: If you want DTOs to ignore extra JSON fields from clients without breaking your API use @JsonIgnoreProperties(ignoreUnknown = true).
#SpringBoot #SoftwareEngineering

Java remains robust and in demand. I show up everyday because it could be anyday! #Java #Springboot

onlyrealkd's tweet image. Java remains robust and in demand. I show up everyday because it could be anyday!

#Java #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

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

humbihari_'s tweet image. I fxing hate this hide and seek.
#Java #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

sardinefis's tweet image. 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

mario_casari's tweet image. ๐Ÿš€ 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

mario_casari's tweet image. ๐Ÿ’ก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

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

Loading...

Something went wrong.


Something went wrong.


United States Trends