博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
springmvc mybatis redis mysql maven搭建基本开发框架 (三)
阅读量:5833 次
发布时间:2019-06-18

本文共 4079 字,大约阅读时间需要 13 分钟。

hot3.png

ba项目下面pom.xml修改,内容如下:

 
4.0.0
 
  
me.explain
  
caption-parent
  
0.0.1-SNAPSHOT
 
  
caption-ba
 
war
 
caption-ba Maven Webapp
 
http://maven.apache.org
  
  
   
me.explain
   
caption-common
   
0.0.1-SNAPSHOT
  
 
  
  
caption-ba
 

web.xml内容如下:

 
Archetype Created Web Application
 
 
  
contextConfigLocation
  
classpath:spring/spring-explain.xml
 
 
 
  
webAppRootKey
  
springmvc.root
 
 
 
  
SpringEncodingFilter
  
org.springframework.web.filter.CharacterEncodingFilter
  
   
encoding
   
UTF-8
  
  
   
forceEncoding
   
true
  
 
 
  
SpringEncodingFilter
  
/*
 
 
 
  
  
log4jConfigLocation
  
classpath:log4j.properties
 
 
  
  
log4jRefreshInterval
  
6000
 
 
  
org.springframework.web.util.Log4jConfigListener
 
 
  
org.springframework.web.context.ContextLoaderListener
 
 
 
  
spring
  
org.springframework.web.servlet.DispatcherServlet
  
   
contextConfigLocation
   
classpath:spring/spring-mvc.xml
  
  
2
 
 
  
spring
  
*.html
 
 
  
index.jsp
 
 
 
  
  
404
  
/WEB-INF/errorpage/404.jsp
 
 
  
  
405
  
/WEB-INF/errorpage/405.jsp
 
 
  
  
500
  
/WEB-INF/errorpage/500.jsp
 

在ba下面下面的resources下面增加spring文件夹,新建文件spring-mvc.xml,内容如下:

        
                        
 
 
  
   
    
       
  
   
    
text/html;charset=UTF-8
   
    
              

在resources下面新建log4j.properties文件:内容如下:

### set log levels ####log4j.rootLogger = debug , stdout , D , E#log4j.rootLogger = debug , stdout , D#####  output to the console ####log4j.appender.stdout = org.apache.log4j.ConsoleAppender#log4j.appender.stdout.Target = System.out#log4j.appender.stdout.layout = org.apache.log4j.PatternLayout##log4j.appender.stdout.layout.ConversionPattern = %d{ABSOLUTE} %5p %c{ 1 }:%L - %m%n#log4j.appender.stdout.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss} [%c]-[%p] %m%n##### Output to the log file ####log4j.appender.D = org.apache.log4j.DailyRollingFileAppender#log4j.appender.D.File = ${springmvc.root}/WEB-INF/logs/log.log#log4j.appender.D.Append = true#log4j.appender.D.Threshold = DEBUG #log4j.appender.D.layout = org.apache.log4j.PatternLayout#log4j.appender.D.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss} [ %t:%r ] - [ %p ] %m%n##### Save exception information to separate file ####log4j.appender.D = org.apache.log4j.DailyRollingFileAppender#log4j.appender.D.File = ${springmvc.root}/WEB-INF/logs/error.log #log4j.appender.D.Append = true#log4j.appender.D.Threshold = ERROR #log4j.appender.D.layout = org.apache.log4j.PatternLayout#log4j.appender.D.layout.ConversionPattern = %-d{yyyy-MM-dd HH:mm:ss} [ %t:%r ] - [ %p ] %m%n

这样大概的框架搭建完成。谢谢关注,要是测试的时候有什么问题,随时在下面留言,马上我会发一篇文章来测试一下。

转载于:https://my.oschina.net/superman158/blog/668776

你可能感兴趣的文章
联想企业网盘张跃华:让文件创造业务价值
查看>>
记录一次蚂蚁金服前端电话面试
查看>>
直播源码开发视频直播平台,不得不了解的流程
查看>>
Ubuntu上的pycrypto给出了编译器错误
查看>>
聊聊flink的RestClientConfiguration
查看>>
在CentOS上搭建git仓库服务器以及mac端进行克隆和提交到远程git仓库
查看>>
測試文章
查看>>
Flex很难?一文就足够了
查看>>
【BATJ面试必会】JAVA面试到底需要掌握什么?【上】
查看>>
CollabNet_Subversion小结
查看>>
mysql定时备份自动上传
查看>>
Linux 高可用集群解决方案
查看>>
17岁时少年决定把海洋洗干净,现在21岁的他做到了
查看>>
linux 启动oracle
查看>>
《写给大忙人看的java se 8》笔记
查看>>
倒计时:计算时间差
查看>>
Linux/windows P2V VMWare ESXi
查看>>
Windows XP倒计时到底意味着什么?
查看>>
运维工程师在干什么学些什么?【致菜鸟】
查看>>
Linux中iptables详解
查看>>