<?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>Pro-Tek Blog &#187; Spring Boot</title>
	<atom:link href="http://www.pro-tekconsulting.com/blog/category/spring-boot/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pro-tekconsulting.com/blog</link>
	<description>For UI developers / UI designers and UI trends</description>
	<lastBuildDate>Thu, 05 Sep 2019 03:59:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.34</generator>
	<item>
		<title>CAN YOU CONTROL LOGGING WITH SPRING BOOT? HOW?</title>
		<link>http://www.pro-tekconsulting.com/blog/can-you-control-logging-with-spring-boot-how/</link>
		<comments>http://www.pro-tekconsulting.com/blog/can-you-control-logging-with-spring-boot-how/#comments</comments>
		<pubDate>Thu, 04 Jan 2018 06:44:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Spring Boot]]></category>
		<category><![CDATA[logging with Spring Boot]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2318</guid>
		<description><![CDATA[<p>Can you control logging with Spring Boot? How? Yes, we can control logging with spring boot. Customizing default Configuration for Logging: By adding logback.xml file to the application we can override the default logging configuration by providing the Spring Boot. This file isplaced in the classpath (src/main/resources) of the application for Spring Boot to pick [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/can-you-control-logging-with-spring-boot-how/">CAN YOU CONTROL LOGGING WITH SPRING BOOT? HOW?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>Can you control logging with Spring Boot? How?</h4>
<p>Yes, we can control logging with spring boot.</p>
<p><strong>Customizing default Configuration for Logging:</strong></p>
<p>By adding logback.xml file to the application we can override the default logging configuration by providing the Spring Boot. This file isplaced in the classpath (src/main/resources) of the application for Spring Boot to pick the custom configuration.</p>
<p><strong>Spring Boot can control the logging level</strong></p>
<ul>
<li>Just set it in application.properties</li>
<li>Works with most logging frameworks</li>
<li>Java Util Logging, Logback, Log4J, Log4J2</li>
</ul>
<p>logging.level.org.springframework=DEBUG<br />
logging.level.com.acme.your.code=INFO</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/can-you-control-logging-with-spring-boot-how/">CAN YOU CONTROL LOGGING WITH SPRING BOOT? HOW?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/can-you-control-logging-with-spring-boot-how/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHAT ARE THE ADVANTAGES AND DISADVANTAGES OF USING SPRING BOOT?</title>
		<link>http://www.pro-tekconsulting.com/blog/what-are-the-advantages-and-disadvantages-of-using-spring-boot/</link>
		<comments>http://www.pro-tekconsulting.com/blog/what-are-the-advantages-and-disadvantages-of-using-spring-boot/#comments</comments>
		<pubDate>Thu, 04 Jan 2018 06:10:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Spring Boot]]></category>
		<category><![CDATA[advantages of Spring Boot]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=2314</guid>
		<description><![CDATA[<p>What are the advantages and disadvantages of using Spring Boot? Advantages: It is very easy to develop Spring Based applications with Java or Groovy. It reduces a lot of development time and increases productivity. It avoids writing of boilerplate Code, Annotations and XML Configuration. It is very easy to integrate Spring Boot Application with its [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-are-the-advantages-and-disadvantages-of-using-spring-boot/">WHAT ARE THE ADVANTAGES AND DISADVANTAGES OF USING SPRING BOOT?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>What are the advantages and disadvantages of using Spring Boot?</h4>
<h4><strong>Advantages:</strong></h4>
<ul>
<li>It is very easy to develop Spring Based applications with Java or Groovy.</li>
<li>It reduces a lot of development time and increases productivity.</li>
<li>It avoids writing of boilerplate Code, Annotations and XML Configuration.</li>
<li>It is very easy to integrate Spring Boot Application with its Spring Ecosystem like Spring JDBC, Spring ORM, Spring Data, Spring Security etc.</li>
<li>It follows “Opinionated Defaults Configuration” Approach to reduce Developer effort</li>
<li>It provides Embedded HTTP servers like Tomcat, Jetty etc. to develop and test our web applications very easily.</li>
<li>It provides CLI (Command Line Interface) tool to develop and test Spring Boot (Java or Groovy) Applications from command prompt very easily and quickly.</li>
<li>It provides lots of plugins to develop and test Spring Boot Applications and it uses Build Tools like Maven and Gradle</li>
<li>It provides lots of plugins to work with embedded and in-memory Databases very easily.</li>
</ul>
<p><strong>Disadvantages:</strong></p>
<p>It is very tough and time consuming process to convert existing or legacy Spring Framework projects into Spring Boot Applications. It is applicable only for brand new/Greenfield Spring Projects.</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-are-the-advantages-and-disadvantages-of-using-spring-boot/">WHAT ARE THE ADVANTAGES AND DISADVANTAGES OF USING SPRING BOOT?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/what-are-the-advantages-and-disadvantages-of-using-spring-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHAT ARE THE ADVANTAGES OF SPRING BOOT?</title>
		<link>http://www.pro-tekconsulting.com/blog/what-are-the-advantages-of-spring-boot/</link>
		<comments>http://www.pro-tekconsulting.com/blog/what-are-the-advantages-of-spring-boot/#comments</comments>
		<pubDate>Tue, 07 Mar 2017 06:35:03 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Spring Boot]]></category>
		<category><![CDATA[advantages of Spring Boot]]></category>

		<guid isPermaLink="false">http://www.pro-tekconsulting.com/blog/?p=1885</guid>
		<description><![CDATA[<p>What are the advantages of Spring Boot? Reduce Development, Testing time and efforts. Use of JavaConfig helps avoid usage of XML. Avoid lots of maven imports and the various version conflicts. Provide Opinionated Development approach. Quick start to development by providing defaults. No Separate Web Server Needed.Which means that you no longer have to boot [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-are-the-advantages-of-spring-boot/">WHAT ARE THE ADVANTAGES OF SPRING BOOT?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></description>
				<content:encoded><![CDATA[<h4>What are the advantages of Spring Boot?</h4>
<ul>
<li>Reduce Development, Testing time and efforts.</li>
<li>Use of JavaConfig helps avoid usage of XML.</li>
<li>Avoid lots of maven imports and the various version conflicts.</li>
<li>Provide Opinionated Development approach.</li>
<li>Quick start to development by providing defaults.</li>
<li>No Separate Web Server Needed.Which means that you no longer have to boot up Tomcat, Glassfish, or anything else.</li>
<li>Requires less configuration-Since there is no web.xml file. Simply add classes annotated with@Configuration and then you can add methods annotated with@Bean, and Spring will automagically load up the object and manage it like it always has. You can even add Autowired to the bean method to have Spring autowire in dependencies needed for the bean.</li>
</ul>
<p>The post <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog/what-are-the-advantages-of-spring-boot/">WHAT ARE THE ADVANTAGES OF SPRING BOOT?</a> appeared first on <a rel="nofollow" href="http://www.pro-tekconsulting.com/blog">Pro-Tek Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pro-tekconsulting.com/blog/what-are-the-advantages-of-spring-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
