idea创建SpringMVC配置⽂件模板,l、l、。。。
⽂章⽬录
在SSM项⽬开发中,会⽤到很多的配置⽂件,⽐如l等等,在开发过程中我们往往只想往⾥⾯添加我们想要的配置即可,其他的像配置⽂件的dtd,⽂件头等既难记,也不好写,jdbc.properties等配置⽂件的内容⼏乎不会改变写起来也⽐较繁琐,好在idea提供给⼤家创建模板的功能,可以给⼤家减少这些繁琐的操作。
下⾯提供⼀整套的配置⽂件模板供⼤家使⽤:
1、l模板
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="/schema/beans"
context="/schema/context"p="/schema/p"
aop="/schema/aop"tx="/schema/tx"
idea debug
xsi="/2001/XMLSchema-instance"
schemaLocation="/schema/beans /schema/beans/spring-beans-4.0.xsd
/schema/context /schema/context/spring-context-4.0.xsd
/schema/aop /schema/aop/spring-ao
p-4.0.xsd /schema/tx /schema/tx/spring-tx-4.0.xsd
/schema/util /schema/util/spring-util-4.0.xsd">
</beans>
2、l模板
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="/xml/ns/javaee"
xsi="/2001/XMLSchema-instance"
schemaLocation="/xml/ns/javaee
/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
</web-app>
3、l模板
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-////DTD Config 3.0//EN"
"/dtd/mybatis-3-config.dtd">
<configuration>
</configuration>
4、l模板
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE mapper PUBLIC "-////DTD Mapper 3.0//EN"
"/dtd/mybatis-3-mapper.dtd">
<mapper namespace="">
</mapper>
5、jdbc.properties模板
jdbc.sql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/javaeedatabase?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false&allowPublicK eyRetrieval=true
jdbc.username=root
jdbc.password=root
6、log4j.properties模板
# Global logging configuration
#
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。