springboot 查看各种依赖的版本(idea工具):


说明:跟踪(ctrl+(mouse-left)) spring-boot-dependencies
	1.查看springboot各种依赖的版本
		步骤:
			1.pom.xml
				
			    	org.springframework.boot
			    	spring-boot-dependencies   
			    	2.2.1.RELEASE
			    	../../spring-boot-dependencies
			  	
			2.spring-boot-starter-parent-2.x.x.release.pom
					 
			        org.springframework.boot
			        spring-boot-starter-parent
			        2.2.1.RELEASE
			         
			    
			3.spring-boot-dependencies-2.x.x.release.pom
			   //文件中这部分就是,sringboot 依赖的各种框架的版本
				
					    ....
					    1.0.2
					    2.6.3
					    .....
				
	2.查看spring-boot-starter-web场景都依赖那些东西,springboot将所有的功能场景都抽取出来做成一个个的starters(启动器),只要引入启动器相关场景的依赖都会引入进来
			1.pom.xml
				 
			        
			            org.springframework.boot
			            spring-boot-starter-web 
			        
		        
	        2.spring-boot-starter-web-2.x.x.release.pom
	        	//它所依赖的东西就都在这里了
		        
					....
				    
				      org.springframework.boot
				      spring-boot-starter
				      2.2.1.RELEASE
				      compile
				    
				    ....
				

 

你可能感兴趣的:(SpringBoot笔记)