首页 > 其他分享 >xml Configuration File的Spring Config没有(2021版本的idea)

xml Configuration File的Spring Config没有(2021版本的idea)

时间:2023-01-30 16:33:58浏览次数:37  
标签:xml Spring idea maven File Configuration Config

1.查看是否下载了spring

2.在pom文件中引入spring依赖

3.更新maven

4.此时还没有显示的话,点击setting查看maven的路径,建议不要使用系统默认的路径

因为这样的话,下载的十分的缓慢。建议使用自己本地电脑的maven

5.此时再次查看xml Configuration File发现Spring Config已经出现辣~~~

 

标签:xml,Spring,idea,maven,File,Configuration,Config
From: https://www.cnblogs.com/miao-xixixi/p/17076407.html

相关文章

  • springboot~openfeign开启熔断之后MDC为null的解决
    上一篇说了关于MDC跨线程为null的理解,而本讲主要说一下,如何去解决它,事实上,Hystrix为我们留了这个口,我们只需要继承HystrixConcurrencyStrategy,然后重写wrapCallable方法,再......
  • IDEA加载大文件时报错:The file size exceeds configured limit
    1,问题描述1Thefilesizeexceedsconfiguredlimit2,解决方案:配置一下idea.properties文件3,添加如下配置1idea.max.intellisense.filesize=500004,重启idea,完......
  • IDEA字体编码设置
    通过菜单中的File-->Settings进行设置(IntelliJIDEA基本所有设置都在该菜单下);字体设置主题的字体一般不建议修改,主题就是指整个Idea工具;代码开发的编辑器的字体建议......
  • springbooot 序列化对象配置
    RbpsemsConfig:   @Bean   @Primary   @ConditionalOnMissingBean(ObjectMapper.class)   publicObjectMapperjacksonObjectMapper(Jackson2ObjectMappe......
  • SpringMVC基础
    当前主流框架SSM:SpringMVC+Spring+MyBatisSSSP:SpringMVC+Spring+SpringDataJPA 关于MVC模型MVC全名是ModelViewController,是模型(model)-视图(view)-控制器(con......
  • SpringBoot单元测试:@SpringBootTest
    接上一篇:SpringBoot整合SSM添加依赖<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId......
  • SpringBoot配置文件详解
    简介SpringBoot全局配置文件默认为src/main/resources下的application.properties,后缀可以改为yml,如果application.yml和application.properties两个配置文件都存在,那么,prop......
  • 使用tinyxml2读取ATML测试数据
    源代码如下:#include<windows.h>#include"tinyxml2.h"#include<stdio.h>#include<string>#include<vector>//usingnamespacestd;usingnamespacetinyxml2;......
  • idea怎么下载插件
    打开idea,file->settings->plugins即可,如图。   ......
  • Spring-IOC相关内容
    Spring-IOC相关内容4,IOC相关内容4.1bean基础配置对于bean的配置中,主要会讲解bean基础配置,bean的别名配置,bean的作用范围配置(重点),这三部分内容:4.1.1bean基础配置......