<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technical Session Archives - A N M Bazlur Rahman</title>
	<atom:link href="https://bazlur.ca/category/technical-session/feed/" rel="self" type="application/rss+xml" />
	<link>https://bazlur.ca/category/technical-session/</link>
	<description>Java Champion 🏆 Empowering Developers through Speaking 🗣️ Writing ✍️ Mentoring 🤝 &#38; Community Building 🌍 Published Author 📖 Contributing Editor at InfoQ and Foojay.IO</description>
	<lastBuildDate>Thu, 09 Apr 2026 23:48:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://i0.wp.com/bazlur.ca/wp-content/uploads/2022/07/cropped-klara-and-sun.jpeg?fit=32%2C32&#038;ssl=1</url>
	<title>Technical Session Archives - A N M Bazlur Rahman</title>
	<link>https://bazlur.ca/category/technical-session/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">207159250</site>	<item>
		<title>Building LLM Apps in Java with LangChain4j</title>
		<link>https://bazlur.ca/2026/04/09/building-llm-apps-in-java-with-langchain4j/</link>
					<comments>https://bazlur.ca/2026/04/09/building-llm-apps-in-java-with-langchain4j/#respond</comments>
		
		<dc:creator><![CDATA[A N M Bazlur Rahman]]></dc:creator>
		<pubDate>Thu, 09 Apr 2026 23:48:34 +0000</pubDate>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Technical Session]]></category>
		<category><![CDATA[AI Engineering]]></category>
		<category><![CDATA[Generative AI]]></category>
		<category><![CDATA[Guardrails]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdconf]]></category>
		<category><![CDATA[LangChain4j]]></category>
		<category><![CDATA[LLM]]></category>
		<category><![CDATA[Observability]]></category>
		<category><![CDATA[RAG]]></category>
		<category><![CDATA[spring boot]]></category>
		<category><![CDATA[Tool Calling]]></category>
		<guid isPermaLink="false">https://bazlur.ca/?p=114105</guid>

					<description><![CDATA[<p>Yesterday I gave a talk titled “Building LLM Apps in Java with LangChain4j.” The core idea was simple: building LLM applications is not mainly about writing clever prompts. It is about applying the same engineering discipline we already use in Java systems. The talk followed the staged evolution of a Spring Boot store assistant. It ... <a title="Building LLM Apps in Java with LangChain4j" class="read-more" href="https://bazlur.ca/2026/04/09/building-llm-apps-in-java-with-langchain4j/" aria-label="Read more about Building LLM Apps in Java with LangChain4j">Read more</a></p>
<p>The post <a href="https://bazlur.ca/2026/04/09/building-llm-apps-in-java-with-langchain4j/">Building LLM Apps in Java with LangChain4j</a> appeared first on <a href="https://bazlur.ca">A N M Bazlur Rahman</a>.</p>
]]></description>
		
					<wfw:commentRss>https://bazlur.ca/2026/04/09/building-llm-apps-in-java-with-langchain4j/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">114105</post-id>	</item>
		<item>
		<title>Your Java Code in the Fastlane: Creating a Million Virtual Threads Using Project Loom to Improve Throughput</title>
		<link>https://bazlur.ca/2022/05/22/your-java-code-in-the-fastlane-creating-a-million-virtual-threads-using-project-loom-to-improve-throughput/</link>
					<comments>https://bazlur.ca/2022/05/22/your-java-code-in-the-fastlane-creating-a-million-virtual-threads-using-project-loom-to-improve-throughput/#respond</comments>
		
		<dc:creator><![CDATA[A N M Bazlur Rahman]]></dc:creator>
		<pubDate>Sun, 22 May 2022 08:34:07 +0000</pubDate>
				<category><![CDATA[Abstract]]></category>
		<category><![CDATA[Technical Session]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdk19]]></category>
		<category><![CDATA[jep425]]></category>
		<category><![CDATA[virtual thread]]></category>
		<guid isPermaLink="false">https://bazlur.ca/?p=56</guid>

					<description><![CDATA[<p>Abstract Project Loom introduces virtual threads, lightweight threads that aim to dramatically reduce the effort of writing, maintaining, and monitoring high-throughput concurrent applications with the Java platform. We need threads to achieve high throughput. However, threads are not cheap and are limited in number. To get around this problem, various alternatives such as the reactive ... <a title="Your Java Code in the Fastlane: Creating a Million Virtual Threads Using Project Loom to Improve Throughput" class="read-more" href="https://bazlur.ca/2022/05/22/your-java-code-in-the-fastlane-creating-a-million-virtual-threads-using-project-loom-to-improve-throughput/" aria-label="Read more about Your Java Code in the Fastlane: Creating a Million Virtual Threads Using Project Loom to Improve Throughput">Read more</a></p>
<p>The post <a href="https://bazlur.ca/2022/05/22/your-java-code-in-the-fastlane-creating-a-million-virtual-threads-using-project-loom-to-improve-throughput/">Your Java Code in the Fastlane: Creating a Million Virtual Threads Using Project Loom to Improve Throughput</a> appeared first on <a href="https://bazlur.ca">A N M Bazlur Rahman</a>.</p>
]]></description>
		
					<wfw:commentRss>https://bazlur.ca/2022/05/22/your-java-code-in-the-fastlane-creating-a-million-virtual-threads-using-project-loom-to-improve-throughput/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">56</post-id>	</item>
	</channel>
</rss>
