MAVEN : Resolve duplicate or find dependency jar in POM file
Related Posts:
CopyOnWriteArrayList difference with normal ArrayList CopyOnWriteArrayList was introduced in JDK5, Which will be used to avoid the java.util.ConcurrentModificationException while modifying List by multiple threads or inside loop. below sample will show the difference. … Read More
java.lang.classnotfoundexception org.springframework.web.context.contextloaderlistener / ClassNotFoundException when running a Spring + Maven2 project on Tomcat from within Eclipse I had a similar problem when running a spring web application in an Eclipse managed tomcat. I solved this problem by adding maven dependencies in the project's web deployment assembly. 1) Open the project's properties (e.g.… Read More
WARN (DefaultHandlerExceptionResolver.java:183) - Request method 'POST' not supported. For Spring REST When Spring RESTful web service post call are throwing following exception, then we need to check 'Content-type' is set in the header/request. set the content-type in the testing client like SoapUI. if the REST controll… Read More
Find Number of duplicates present in a ArrayList To find the number of occurrences of duplicate integer present in List, first we will create temp List which will have no duplicates and then use collection frequecy() function to get the occurrence of duplicate number in or… Read More
Timezone Conversion with Daylight savingTimezone conversion from one timezone to other timezone for the given time or hour string input. While converting the timezone we have to consider DST standard also. in jdk 1.3. and 1.4 DST was not taken care internally by j… Read More
0 comments:
Post a Comment