{"id":2576,"date":"2024-01-13T20:04:21","date_gmt":"2024-01-13T20:04:21","guid":{"rendered":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/?p=2576"},"modified":"2024-08-07T09:33:05","modified_gmt":"2024-08-07T09:33:05","slug":"lombok-annotations-for-streamlined-code","status":"publish","type":"post","link":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code","title":{"rendered":"Lombok Annotations for Streamlined Code"},"content":{"rendered":"\n<p>Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more. When combined with Spring Boot, Lombok can make your code more concise and readable. In this tutorial, we&#8217;ll explore various Lombok annotations and how they can be used in a Spring Boot application.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p>Make sure you have the following installed:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Java Development Kit (JDK) &#8211; preferably JDK 8 or later.<\/li>\n\n\n\n<li>Spring Boot &#8211; you can use the Spring Initializer or your preferred method to set up a Spring Boot project.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">1. Adding Lombok to your project<\/h3>\n\n\n\n<p>Add the Lombok dependency to your project&#8217;s build file. If you are using Maven, add the following dependency to your <code>pom.xml<\/code>:<br><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/5d6e950998d7d0e50f2e0a8754f5da29.js\"><\/script>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Basic Lombok Annotations<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><code>@Data<\/code><\/h4>\n\n\n\n<p>The <code>@Data<\/code> annotation is a convenient shortcut annotation that bundles the functionalities of <code>@ToString<\/code>, <code>@EqualsAndHashCode<\/code>, <code>@Getter<\/code>, and <code>@Setter<\/code>. It is commonly used on classes to generate boilerplate code for these methods.<br><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/4fe200c6e4663549713525c9f115c8e9.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\"><code>@Getter<\/code> and <code>@Setter<\/code><\/h4>\n\n\n\n<p>These annotations generate getter and setter methods for your class variables.<br><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/fd9cc5cef43db557efc0931faa30c371.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\"><code>@NoArgsConstructor<\/code>, <code>@RequiredArgsConstructor<\/code>, and <code>@AllArgsConstructor<\/code><\/h4>\n\n\n\n<p>These annotations generate no-argument, required-argument, and all-argument constructors, respectively.<br><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/931fff18da50ecab58d305814db3f319.js\"><\/script>\n\n\n\n<h3 class=\"wp-block-heading\">3. Lombok Annotations in Spring Boot<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\"><code>@Slf4j<\/code><\/h4>\n\n\n\n<p>The <code>@Slf4j<\/code> annotation generates a logger field for your class.<br><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/61146bbccd9df5ac95a4aa5647bed3b5.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\"><code>@Builder<\/code><\/h4>\n\n\n\n<p>The <code>@Builder<\/code> annotation creates a builder class for your class, making it easy to create instances with a fluent API.<br><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/20150eec27eece49e03a442035c38ee5.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\"><code>@EqualsAndHashCode<\/code><\/h4>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/90b0b2de469965249954cce47f1d646c.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\">@ToString<\/h4>\n\n\n\n<p><\/p>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/54f2c2a29668df124f04b856e57275ae.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\">@SneakyThrows<\/h4>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/0cb1d897aaf992029c44b3a534c0bfdb.js\"><\/script>\n\n\n\n<h2 class=\"wp-block-heading\">@NotNull<\/h2>\n\n\n\n<script src=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/gist.github.com\/delta-dev-software\/0cf1383c05a7f55e09b1a3fd9bab568a.js\"><\/script>\n\n\n\n<h4 class=\"wp-block-heading\"><br>Conclusion<\/h4>\n\n\n\n<p>Lombok provides a variety of annotations that can significantly reduce boilerplate code in your Spring Boot projects. By incorporating Lombok into your development process, you can write more concise and readable code. Experiment with these annotations in your Spring Boot application to see how they can enhance your development experience.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more. When combined with Spring Boot, Lombok can make your code more concise and readable. In this tutorial, we&#8217;ll explore various Lombok annotations and how they can be used in [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":9527,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_seopress_robots_primary_cat":"none","_seopress_titles_title":"%%post_title%%","_seopress_titles_desc":"","_seopress_robots_index":"","_seopress_analysis_target_kw":"","ocean_post_layout":"right-sidebar","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[34],"tags":[],"class_list":["post-2576","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-java","entry","has-media","owp-thumbs-layout-horizontal","owp-btn-very-big","owp-tabs-layout-horizontal","has-no-thumbnails","has-product-nav"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Lombok Annotations for Streamlined Code - Custom Software, Infinite Possibilities.<\/title>\n<meta name=\"description\" content=\"Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Lombok Annotations for Streamlined Code - Custom Software, Infinite Possibilities.\" \/>\n<meta property=\"og:description\" content=\"Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code\" \/>\n<meta property=\"og:site_name\" content=\"Custom Software, Infinite Possibilities.\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-13T20:04:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-07T09:33:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2024\/01\/chilli-plant-vegetable-food.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"910\" \/>\n\t<meta property=\"og:image:height\" content=\"607\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"anis kchaou\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"anis kchaou\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code\"},\"author\":{\"name\":\"anis kchaou\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#\\\/schema\\\/person\\\/bc01eb392bf5f7248664af5ca7372606\"},\"headline\":\"Lombok Annotations for Streamlined Code\",\"datePublished\":\"2024-01-13T20:04:21+00:00\",\"dateModified\":\"2024-08-07T09:33:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code\"},\"wordCount\":266,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/delta-dev-software.fr\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/chilli-plant-vegetable-food.jpg\",\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code\",\"url\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code\",\"name\":\"Lombok Annotations for Streamlined Code - Custom Software, Infinite Possibilities.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/delta-dev-software.fr\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/chilli-plant-vegetable-food.jpg\",\"datePublished\":\"2024-01-13T20:04:21+00:00\",\"dateModified\":\"2024-08-07T09:33:05+00:00\",\"description\":\"Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#primaryimage\",\"url\":\"https:\\\/\\\/delta-dev-software.fr\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/chilli-plant-vegetable-food.jpg\",\"contentUrl\":\"https:\\\/\\\/delta-dev-software.fr\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/chilli-plant-vegetable-food.jpg\",\"width\":910,\"height\":607},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/lombok-annotations-for-streamlined-code#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/delta-dev-software.fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Lombok Annotations for Streamlined Code\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#website\",\"url\":\"https:\\\/\\\/delta-dev-software.fr\\\/\",\"name\":\"Delta Dev Software\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/delta-dev-software.fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#organization\",\"name\":\"Delta Dev Software\",\"url\":\"https:\\\/\\\/delta-dev-software.fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/delta-dev-software.fr\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/logo-1.png\",\"contentUrl\":\"https:\\\/\\\/delta-dev-software.fr\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/logo-1.png\",\"width\":200,\"height\":200,\"caption\":\"Delta Dev Software\"},\"image\":{\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/delta-dev-software.fr\\\/#\\\/schema\\\/person\\\/bc01eb392bf5f7248664af5ca7372606\",\"name\":\"anis kchaou\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b8ef8891264bd2e394bc2a14877fd3047dbc21b8cc3858f6bd7d6499ecdc54e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b8ef8891264bd2e394bc2a14877fd3047dbc21b8cc3858f6bd7d6499ecdc54e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6b8ef8891264bd2e394bc2a14877fd3047dbc21b8cc3858f6bd7d6499ecdc54e?s=96&d=mm&r=g\",\"caption\":\"anis kchaou\"},\"url\":\"https:\\\/\\\/delta-dev-software.fr\\\/author\\\/aniskchaou2022\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Lombok Annotations for Streamlined Code - Custom Software, Infinite Possibilities.","description":"Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code","og_locale":"en_US","og_type":"article","og_title":"Lombok Annotations for Streamlined Code - Custom Software, Infinite Possibilities.","og_description":"Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more.","og_url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code","og_site_name":"Custom Software, Infinite Possibilities.","article_published_time":"2024-01-13T20:04:21+00:00","article_modified_time":"2024-08-07T09:33:05+00:00","og_image":[{"width":910,"height":607,"url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2024\/01\/chilli-plant-vegetable-food.jpg","type":"image\/jpeg"}],"author":"anis kchaou","twitter_card":"summary_large_image","twitter_misc":{"Written by":"anis kchaou","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#article","isPartOf":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code"},"author":{"name":"anis kchaou","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#\/schema\/person\/bc01eb392bf5f7248664af5ca7372606"},"headline":"Lombok Annotations for Streamlined Code","datePublished":"2024-01-13T20:04:21+00:00","dateModified":"2024-08-07T09:33:05+00:00","mainEntityOfPage":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code"},"wordCount":266,"commentCount":0,"publisher":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#organization"},"image":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#primaryimage"},"thumbnailUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2024\/01\/chilli-plant-vegetable-food.jpg","articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code","name":"Lombok Annotations for Streamlined Code - Custom Software, Infinite Possibilities.","isPartOf":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#primaryimage"},"image":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#primaryimage"},"thumbnailUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2024\/01\/chilli-plant-vegetable-food.jpg","datePublished":"2024-01-13T20:04:21+00:00","dateModified":"2024-08-07T09:33:05+00:00","description":"Lombok is a popular Java library that helps reduce boilerplate code in your projects by automatically generating common code, such as getters, setters, constructors, and more.","breadcrumb":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#primaryimage","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2024\/01\/chilli-plant-vegetable-food.jpg","contentUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2024\/01\/chilli-plant-vegetable-food.jpg","width":910,"height":607},{"@type":"BreadcrumbList","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/lombok-annotations-for-streamlined-code#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/"},{"@type":"ListItem","position":2,"name":"Lombok Annotations for Streamlined Code"}]},{"@type":"WebSite","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#website","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/","name":"Delta Dev Software","description":"","publisher":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#organization","name":"Delta Dev Software","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#\/schema\/logo\/image\/","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2021\/04\/logo-1.png","contentUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-content\/uploads\/2021\/04\/logo-1.png","width":200,"height":200,"caption":"Delta Dev Software"},"image":{"@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/#\/schema\/person\/bc01eb392bf5f7248664af5ca7372606","name":"anis kchaou","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/secure.gravatar.com\/avatar\/6b8ef8891264bd2e394bc2a14877fd3047dbc21b8cc3858f6bd7d6499ecdc54e?s=96&d=mm&r=g","url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/secure.gravatar.com\/avatar\/6b8ef8891264bd2e394bc2a14877fd3047dbc21b8cc3858f6bd7d6499ecdc54e?s=96&d=mm&r=g","contentUrl":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/secure.gravatar.com\/avatar\/6b8ef8891264bd2e394bc2a14877fd3047dbc21b8cc3858f6bd7d6499ecdc54e?s=96&d=mm&r=g","caption":"anis kchaou"},"url":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/author\/aniskchaou2022"}]}},"_links":{"self":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/posts\/2576","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/comments?post=2576"}],"version-history":[{"count":6,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/posts\/2576\/revisions"}],"predecessor-version":[{"id":3053,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/posts\/2576\/revisions\/3053"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/media\/9527"}],"wp:attachment":[{"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/media?parent=2576"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/categories?post=2576"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/delta-dev-software.fr\/wp-json\/wp\/v2\/tags?post=2576"}],"curies":[{"name":"wp","href":"https:\/\/blue-sea-697d.quartiers047.workers.dev:443\/https\/api.w.org\/{rel}","templated":true}]}}