forked from springinpractice/sip01
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c147eaa
commit 3068b61
Showing
7 changed files
with
63 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
======================================================================================================================== | ||
Spring in Practice, Chapter 1 | ||
README - Spring in Practice Recipe 10.6 | ||
|
||
Copyright (c) 2008-2012 Manning Publications Co. | ||
Copyright (c) 2013 Manning Publications Co. | ||
|
||
Joshua White | ||
Willie Wheeler ([email protected]) | ||
======================================================================================================================== | ||
|
||
Book: http://manning.com/wheeler/ | ||
Blog: http://springinpractice.com/ | ||
Code: https://github.com/springinpractice | ||
======================================================================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,42 @@ | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.springinpractice</groupId> | ||
<artifactId>sip01</artifactId> | ||
<version>1.0-RELEASE</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>Spring in Practice Chapter 1</name> | ||
<url>http://springinpractice.com/</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>commons-dbcp</groupId> | ||
<artifactId>commons-dbcp</artifactId> | ||
<version>1.4</version> | ||
</dependency> | ||
</dependencies> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
======================================================================================================================== | ||
pom.xml | ||
Copyright (c) 2013 Manning Publications Co. | ||
Joshua White | ||
Willie Wheeler ([email protected]) | ||
Book: http://manning.com/wheeler/ | ||
Blog: http://springinpractice.com/ | ||
Code: https://github.com/springinpractice | ||
======================================================================================================================== | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.springinpractice</groupId> | ||
<artifactId>sip01</artifactId> | ||
<version>1.0-RELEASE</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>Spring in Practice Chapter 1</name> | ||
<url>http://springinpractice.com/</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>commons-dbcp</groupId> | ||
<artifactId>commons-dbcp</artifactId> | ||
<version>1.4</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
// Source project: sip01, branch: 01 (Maven Project) | ||
/* | ||
* Copyright (c) 2013 Manning Publications Co. | ||
* | ||
* Book: http://manning.com/wheeler/ | ||
* Blog: http://springinpractice.com/ | ||
* Code: https://github.com/springinpractice | ||
*/ | ||
package com.springinpractice.ch01.dao; | ||
|
||
public interface AccountDao { | ||
|
||
} |
8 changes: 7 additions & 1 deletion
8
src/main/java/com/springinpractice/ch01/dao/jdbc/JdbcAccountDao.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.