Skip to content

Commit

Permalink
proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
LyeKios committed Oct 12, 2020
1 parent e45e8d8 commit 923ecb8
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Mybatis/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Mybatis/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Mybatis/.idea/libraries/Maven__org_mybatis_mybatis_3_5_1.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Mybatis/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Mybatis/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions ch03-proxy-dao/ch03-proxy-dao.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_8">
<output url="file://$MODULE_DIR$/target/classes" />
<output-test url="file://$MODULE_DIR$/target/test-classes" />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="jdk" jdkName="14" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.11" level="project" />
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
<orderEntry type="library" name="Maven: org.mybatis:mybatis:3.5.1" level="project" />
<orderEntry type="library" name="Maven: mysql:mysql-connector-java:5.1.9" level="project" />
</component>
</module>
2 changes: 1 addition & 1 deletion mybatis-dao/src/test/java/com/TestMyBatis.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void testInsertStudent(){
public void testUpdate() {
StudentDao dao = new StudentDaoImpl();
Student student = new Student();
student.setId(1006);
student.setId(1009);
student.setName("曹操");
student.setEmail("[email protected]");
student.setAge(28);
Expand Down

0 comments on commit 923ecb8

Please sign in to comment.