一、引言&问题描述

使用Spring管理对象时,我们需要创建Spring配置文件applicationContext.xml,如下图位置

  1. resources目录选择new->File使用idea自带模板new->XML Configuration File->Spring Config

image.png

  1. 创建applicationContext.xml

image.png

  1. 我们发现idea帮助我们生成了一些Spring所需的xml文件配置,但是还是缺一些配置,比如AOP的配置。

image.png

  1. 此时就可以考虑使用idea中的Live Templates自定义我们Spring所需的XML配置文件格式

二、解决方案

  1. 连续按两次shift搜索live点击Live Templates

image.png

  1. 下图进行操作,配置以下文本内容

image.png
自定义生成内容需要添加其他内容可自行添加):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
        
</beans>
  1. 效果展示新建一个xml文件输入spring按Tab

image.png

image.png
模板创建成功!
image.png


原文地址:https://blog.csdn.net/weixin_52152676/article/details/134644529

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_34238.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注