Skip to content

Commit 011b355

Browse files
committed
初始提交包
1 parent f3a3bd4 commit 011b355

File tree

12 files changed

+101
-1
lines changed

12 files changed

+101
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* @ClassName: package-info
3+
* @Description: 请求控制器包
4+
* @company
5+
* @author liyang
6+
7+
* @date 2017年03月13日
8+
*
9+
*/
10+
package cn.charlie166.plugins.bookmark.controller;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* @ClassName: package-info
3+
* @Description: 数据库操作接口包
4+
* @company
5+
* @author liyang
6+
7+
* @date 2016年12月30日
8+
*
9+
*/
10+
package cn.charlie166.plugins.bookmark.dao;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* @ClassName: package-info
3+
* @Description: 数据映射类包
4+
* @company
5+
* @author liyang
6+
7+
* @date 2016年12月30日
8+
*
9+
*/
10+
package cn.charlie166.plugins.bookmark.domain;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
* @Title: package-info.java
3+
* @Package cn.charlie166.plugins.bookmark.service.impl
4+
* @Description: 服务实现类包
5+
* @author liyang
6+
* @date 2017年3月13日
7+
* @version V1.0
8+
*/
9+
package cn.charlie166.plugins.bookmark.service.impl;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* @ClassName: package-info
3+
* @Description: 服务类接口包
4+
* @company
5+
* @author liyang
6+
7+
* @date 2016年12月30日
8+
*
9+
*/
10+
package cn.charlie166.plugins.bookmark.service.inter;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/**
2+
* @ClassName: package-info
3+
* @Description: 服务类包
4+
* @company
5+
* @author liyang
6+
7+
* @date 2016年12月30日
8+
*
9+
*/
10+
package cn.charlie166.plugins.bookmark.service;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
##公共配置属性文件##
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Configuration status="WARN">
3+
<Appenders>
4+
<Console name="Console" target="SYSTEM_OUT">
5+
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
6+
</Console>
7+
</Appenders>
8+
<Loggers>
9+
<Root level="debug">
10+
<AppenderRef ref="Console"/>
11+
</Root>
12+
</Loggers>
13+
</Configuration>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<%@ page language="java" contentType="text/html; charset=UTF-8"
2+
pageEncoding="UTF-8"%>
3+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4+
<html>
5+
<head>
6+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7+
<title>首页</title>
8+
</head>
9+
<body>
10+
11+
</body>
12+
</html>

bookmark/src/main/webapp/WEB-INF/web.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<context-param>
77
<param-name>log4jConfiguration</param-name>
8-
<param-value>classpath:config/log/log4j2.xml</param-value>
8+
<param-value>classpath:config/log4j2.xml</param-value>
99
</context-param>
1010

1111
</web-app>

0 commit comments

Comments
 (0)