From 84ff48056f0df01d48955aa3a657a18aa3347da7 Mon Sep 17 00:00:00 2001 From: zxy19971014 <1094127243@qq.com> Date: Sat, 12 Jan 2019 17:06:13 +0800 Subject: [PATCH] =?UTF-8?q?Signed-off-by:=20zxy19971014=20<1094127243@qq.c?= =?UTF-8?q?om>=E7=94=A8=E6=88=B7=E4=B8=AA=E4=BA=BA=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E4=B8=8E=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 后端的都放着里面/yhSearch/.classpath | 21 +++ 后端的都放着里面/yhSearch/.project | 42 +++++ .../yhSearch/.settings/.jsdtscope | 13 ++ .../.settings/org.eclipse.jdt.core.prefs | 8 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../org.eclipse.wst.common.component | 10 ++ ....eclipse.wst.common.project.facet.core.xml | 7 + ...rg.eclipse.wst.jsdt.ui.superType.container | 1 + .../org.eclipse.wst.jsdt.ui.superType.name | 1 + .../org.eclipse.wst.validation.prefs | 2 + 后端的都放着里面/yhSearch/pom.xml | 154 ++++++++++++++++++ .../main/java/controller/yhController.java | 32 ++++ .../yhSearch/src/main/java/domain/yhPO.java | 35 ++++ .../src/main/java/mapperDAO/yhMapperDao.java | 16 ++ .../src/main/java/service/yhService.java | 13 ++ .../main/java/serviceimpl/yhServiceImpl.java | 32 ++++ .../src/main/resources/generatorConfig.xml | 52 ++++++ .../src/main/resources/mapper/yhMapper.xml | 26 +++ .../yhSearch/src/main/resources/mybatis.xml | 5 + .../src/main/resources/spring-context.xml | 11 ++ .../src/main/resources/spring-mvc.xml | 27 +++ .../src/main/resources/spring-mybatis.xml | 51 ++++++ .../yhSearch/src/main/webapp/WEB-INF/web.xml | 7 + .../classes/controller/yhController.class | Bin 0 -> 1093 bytes .../yhSearch/target/classes/domain/yhPO.class | Bin 0 -> 981 bytes .../target/classes/generatorConfig.xml | 52 ++++++ .../target/classes/mapper/yhMapper.xml | 26 +++ .../classes/mapperDAO/yhMapperDao.class | Bin 0 -> 315 bytes .../yhSearch/target/classes/mybatis.xml | 5 + .../target/classes/service/yhService.class | Bin 0 -> 196 bytes .../classes/serviceimpl/yhServiceImpl.class | Bin 0 -> 953 bytes .../target/classes/spring-context.xml | 11 ++ .../yhSearch/target/classes/spring-mvc.xml | 27 +++ .../target/classes/spring-mybatis.xml | 51 ++++++ .../web-resources/META-INF/MANIFEST.MF | 5 + .../maven/yonghu/yhSearch/pom.properties | 7 + .../META-INF/maven/yonghu/yhSearch/pom.xml | 154 ++++++++++++++++++ 37 files changed, 908 insertions(+) create mode 100644 后端的都放着里面/yhSearch/.classpath create mode 100644 后端的都放着里面/yhSearch/.project create mode 100644 后端的都放着里面/yhSearch/.settings/.jsdtscope create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.jdt.core.prefs create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.m2e.core.prefs create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.component create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.container create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.name create mode 100644 后端的都放着里面/yhSearch/.settings/org.eclipse.wst.validation.prefs create mode 100644 后端的都放着里面/yhSearch/pom.xml create mode 100644 后端的都放着里面/yhSearch/src/main/java/controller/yhController.java create mode 100644 后端的都放着里面/yhSearch/src/main/java/domain/yhPO.java create mode 100644 后端的都放着里面/yhSearch/src/main/java/mapperDAO/yhMapperDao.java create mode 100644 后端的都放着里面/yhSearch/src/main/java/service/yhService.java create mode 100644 后端的都放着里面/yhSearch/src/main/java/serviceimpl/yhServiceImpl.java create mode 100644 后端的都放着里面/yhSearch/src/main/resources/generatorConfig.xml create mode 100644 后端的都放着里面/yhSearch/src/main/resources/mapper/yhMapper.xml create mode 100644 后端的都放着里面/yhSearch/src/main/resources/mybatis.xml create mode 100644 后端的都放着里面/yhSearch/src/main/resources/spring-context.xml create mode 100644 后端的都放着里面/yhSearch/src/main/resources/spring-mvc.xml create mode 100644 后端的都放着里面/yhSearch/src/main/resources/spring-mybatis.xml create mode 100644 后端的都放着里面/yhSearch/src/main/webapp/WEB-INF/web.xml create mode 100644 后端的都放着里面/yhSearch/target/classes/controller/yhController.class create mode 100644 后端的都放着里面/yhSearch/target/classes/domain/yhPO.class create mode 100644 后端的都放着里面/yhSearch/target/classes/generatorConfig.xml create mode 100644 后端的都放着里面/yhSearch/target/classes/mapper/yhMapper.xml create mode 100644 后端的都放着里面/yhSearch/target/classes/mapperDAO/yhMapperDao.class create mode 100644 后端的都放着里面/yhSearch/target/classes/mybatis.xml create mode 100644 后端的都放着里面/yhSearch/target/classes/service/yhService.class create mode 100644 后端的都放着里面/yhSearch/target/classes/serviceimpl/yhServiceImpl.class create mode 100644 后端的都放着里面/yhSearch/target/classes/spring-context.xml create mode 100644 后端的都放着里面/yhSearch/target/classes/spring-mvc.xml create mode 100644 后端的都放着里面/yhSearch/target/classes/spring-mybatis.xml create mode 100644 后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF create mode 100644 后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.properties create mode 100644 后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.xml diff --git a/后端的都放着里面/yhSearch/.classpath b/后端的都放着里面/yhSearch/.classpath new file mode 100644 index 0000000..da46b03 --- /dev/null +++ b/后端的都放着里面/yhSearch/.classpath @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/.project b/后端的都放着里面/yhSearch/.project new file mode 100644 index 0000000..060771a --- /dev/null +++ b/后端的都放着里面/yhSearch/.project @@ -0,0 +1,42 @@ + + + yhSearch + + + + + + org.eclipse.wst.jsdt.core.javascriptValidator + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.jsdt.core.jsNature + + diff --git a/后端的都放着里面/yhSearch/.settings/.jsdtscope b/后端的都放着里面/yhSearch/.settings/.jsdtscope new file mode 100644 index 0000000..b72a6a4 --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/.jsdtscope @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.jdt.core.prefs b/后端的都放着里面/yhSearch/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..45a6e0e --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.5 diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.m2e.core.prefs b/后端的都放着里面/yhSearch/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000..f897a7f --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.component b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.component new file mode 100644 index 0000000..a63c32b --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.component @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.project.facet.core.xml b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 0000000..d74c55e --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.container b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.container new file mode 100644 index 0000000..3bd5d0a --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.container @@ -0,0 +1 @@ +org.eclipse.wst.jsdt.launching.baseBrowserLibrary \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.name b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.name new file mode 100644 index 0000000..05bd71b --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.jsdt.ui.superType.name @@ -0,0 +1 @@ +Window \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.validation.prefs b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 0000000..04cad8c --- /dev/null +++ b/后端的都放着里面/yhSearch/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/后端的都放着里面/yhSearch/pom.xml b/后端的都放着里面/yhSearch/pom.xml new file mode 100644 index 0000000..3cf0e04 --- /dev/null +++ b/后端的都放着里面/yhSearch/pom.xml @@ -0,0 +1,154 @@ + + 4.0.0 + yonghu + yhSearch + war + 0.0.1-SNAPSHOT + yhSearch Maven Webapp + http://maven.apache.org + + + UTF-8 + UTF-8 + + 4.3.10.RELEASE + + + + + mysql + mysql-connector-java + 5.1.46 + + + junit + junit + 3.8.1 + test + + + + org.mybatis.generator + mybatis-generator-core + 1.3.5 + + + mysql + mysql-connector-java + 5.1.46 + + + + + org.springframework + spring-core + ${spring.version} + + + + org.springframework + spring-beans + ${spring.version} + + + + org.springframework + spring-context + ${spring.version} + + + + org.springframework + spring-jdbc + ${spring.version} + + + + org.springframework + spring-tx + ${spring.version} + + + + org.springframework + spring-web + ${spring.version} + + + + org.springframework + spring-webmvc + ${spring.version} + + + + org.springframework + spring-test + ${spring.version} + test + + + + + org.mybatis + mybatis + 3.4.2 + + + org.mybatis + mybatis-spring + 1.3.1 + + + c3p0 + c3p0 + 0.9.1.2 + + + commons-dbcp + commons-dbcp + 1.4 + + + + + junit + junit + 4.12 + test + + + + booksService + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.8 + 1.8 + UTF8 + true + + + + + org.mybatis.generator + mybatis-generator-maven-plugin + 1.3.5 + + + ${basedir}/src/main/resources/generatorConfig.xml + true + + + + + + diff --git a/后端的都放着里面/yhSearch/src/main/java/controller/yhController.java b/后端的都放着里面/yhSearch/src/main/java/controller/yhController.java new file mode 100644 index 0000000..73225d2 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/java/controller/yhController.java @@ -0,0 +1,32 @@ +package controller; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.RequestMapping; + +import domain.yhPO; +import service.yhService; +@Controller +public class yhController { + @Autowired@Qualifier("yhServiceImpl") + private yhService yhService; + + @RequestMapping("/search") + public String search(Model model,String s_id){ + yhPO yhPO=yhService.search(s_id); + model.addAttribute("s_id", yhPO.getS_id()); + model.addAttribute("s_name", yhPO.getS_name()); + model.addAttribute("s_password", yhPO.getS_password()); + + } + + @RequestMapping("/update") + public String update(yhPO yhPO){ + yhService.update(yhPO); + + } + + +} diff --git a/后端的都放着里面/yhSearch/src/main/java/domain/yhPO.java b/后端的都放着里面/yhSearch/src/main/java/domain/yhPO.java new file mode 100644 index 0000000..36cc313 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/java/domain/yhPO.java @@ -0,0 +1,35 @@ +package domain; +import java.io.Serializable; +public class yhPO implements Serializable { + private String s_id; + private String s_name; + private String s_password; + + private static final long serialVersionUID = 1L; + + public String getS_id() { + return s_id; + } + + public void setS_id(String s_id) { + this.s_id = s_id; + } + + public String getS_name() { + return s_name; + } + + public void setS_name(String s_name) { + this.s_name = s_name; + } + + public String getS_password() { + return s_password; + } + + public void setS_password(String s_password) { + this.s_password = s_password; + } + + +} diff --git a/后端的都放着里面/yhSearch/src/main/java/mapperDAO/yhMapperDao.java b/后端的都放着里面/yhSearch/src/main/java/mapperDAO/yhMapperDao.java new file mode 100644 index 0000000..3415cb1 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/java/mapperDAO/yhMapperDao.java @@ -0,0 +1,16 @@ +package mapperDAO; + + + +import org.springframework.stereotype.Repository; + +import domain.yhPO; +@Repository("yhMapperDao") +public interface yhMapperDao { + + public yhPO search(String s_id); + + + public void update(yhPO yhPO); + +} diff --git a/后端的都放着里面/yhSearch/src/main/java/service/yhService.java b/后端的都放着里面/yhSearch/src/main/java/service/yhService.java new file mode 100644 index 0000000..9331967 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/java/service/yhService.java @@ -0,0 +1,13 @@ +package service; + +import domain.yhPO; + + + +public interface yhService { + + public yhPO search(String bs_id); + + public void update(yhPO yhpo); + +} diff --git a/后端的都放着里面/yhSearch/src/main/java/serviceimpl/yhServiceImpl.java b/后端的都放着里面/yhSearch/src/main/java/serviceimpl/yhServiceImpl.java new file mode 100644 index 0000000..1ea55cf --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/java/serviceimpl/yhServiceImpl.java @@ -0,0 +1,32 @@ +package serviceimpl; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.stereotype.Component; + +import domain.yhPO; +import mapperDAO.yhMapperDao; +import service.yhService; + +@Component("yhServiceImpl") +public class yhServiceImpl implements yhService{ + @Autowired@Qualifier("yhMapperDao") + private yhMapperDao yhMapperDao; + + public yhPO search(String s_id) { + return this.yhMapperDao.search(s_id); + + } + + + public void update(yhPO yhpo) { + // TODO Auto-generated method stub + yhMapperDao.update(yhpo); + + } + + + + + +} diff --git a/后端的都放着里面/yhSearch/src/main/resources/generatorConfig.xml b/后端的都放着里面/yhSearch/src/main/resources/generatorConfig.xml new file mode 100644 index 0000000..3b321a6 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/resources/generatorConfig.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
\ No newline at end of file diff --git a/后端的都放着里面/yhSearch/src/main/resources/mapper/yhMapper.xml b/后端的都放着里面/yhSearch/src/main/resources/mapper/yhMapper.xml new file mode 100644 index 0000000..ea8eb23 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/resources/mapper/yhMapper.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/src/main/resources/mybatis.xml b/后端的都放着里面/yhSearch/src/main/resources/mybatis.xml new file mode 100644 index 0000000..60a680b --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/resources/mybatis.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/src/main/resources/spring-context.xml b/后端的都放着里面/yhSearch/src/main/resources/spring-context.xml new file mode 100644 index 0000000..34a92db --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/resources/spring-context.xml @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/src/main/resources/spring-mvc.xml b/后端的都放着里面/yhSearch/src/main/resources/spring-mvc.xml new file mode 100644 index 0000000..c1090a2 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/resources/spring-mvc.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/src/main/resources/spring-mybatis.xml b/后端的都放着里面/yhSearch/src/main/resources/spring-mybatis.xml new file mode 100644 index 0000000..35dbc99 --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/resources/spring-mybatis.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + dialect=mysql + reasonable=true + + + + + + + + + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/src/main/webapp/WEB-INF/web.xml b/后端的都放着里面/yhSearch/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..9f88c1f --- /dev/null +++ b/后端的都放着里面/yhSearch/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,7 @@ + + + + Archetype Created Web Application + diff --git a/后端的都放着里面/yhSearch/target/classes/controller/yhController.class b/后端的都放着里面/yhSearch/target/classes/controller/yhController.class new file mode 100644 index 0000000000000000000000000000000000000000..be52cadbf34eea915e8d8f0aabd1b78429c6697a GIT binary patch literal 1093 zcmb7DZEF)j5S~rbq&eHBFKSJFyZT0|;3D`zj0mMF2v=*X1Fh{?4-D%ly<^Ntt^9Q zkv0e1=0>W6t`Qj?Y4e$PP$@zYp0=Vh#dn=oskMGSbdeZG*x?**xS3hP3Ht}rSTbg@P1LfsABAjj~8L=Zp&Zh2L2Gq}<`&&bPPDe^=(5_zo| zB{~yQ(OSLVo-9C>|IH3|bzx$BBmMgGah=X-mU%m;lRgnLH8! zu2PoAo+odGzTguu3)hB#PpN^QBKQuCk4x8&;pR{B#!(l?P=gU_Nb^rZy)!~B{S$R{ S0%{5F4tw7lPU|_{2lxYetQJ`S literal 0 HcmV?d00001 diff --git a/后端的都放着里面/yhSearch/target/classes/domain/yhPO.class b/后端的都放着里面/yhSearch/target/classes/domain/yhPO.class new file mode 100644 index 0000000000000000000000000000000000000000..24bb204d256cbb0efd3075201ab708a6cb21acca GIT binary patch literal 981 zcmZ{h-EPxB5QWb=KgNke(=`2o08L9NNs+L)2KA;02^3MJKyIT=vP!pd?8@ta;Hf|Y zA#uS2@KA`EO`;&zwPcSqd(O-^vw!~n`VHV2x-J}n>Li{?9R;5+-krNB3e+#}SyF*=SuynZPl-U!sr;>e^jN(VBWs}ce7BdE#?9qIH`pwQ_KsNq>WQ56)> z^ijvAz(!9;>g{|sQpx)TQ==D;WjK(;NsP;6F}=`++VuV#ml)ltO8a(%W~Y072oD1H ze7LwpQnQk7cdjd$&9lXLX7(NU@Yv^B-(nLrt5_|ARgZjBSXHyC)d}saAJ3DqdZl^G z9$(H=UNH{HQ=qqmA{+*zEjirCMk+<|E~@ZJQ?t3-q@uNBlfDhg1QZ3u(#cP3eY28n z`j&07fF1g0GYPPZJ&FQ%sASgs9j&i)=wNNG=9=&0!P0z6YKJ`KlP5pWTDPv)>;^Tg z+X_1i)v`UK@tjP(p9|8?f^6l29Oi?xvmm + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
\ No newline at end of file diff --git a/后端的都放着里面/yhSearch/target/classes/mapper/yhMapper.xml b/后端的都放着里面/yhSearch/target/classes/mapper/yhMapper.xml new file mode 100644 index 0000000..ea8eb23 --- /dev/null +++ b/后端的都放着里面/yhSearch/target/classes/mapper/yhMapper.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/target/classes/mapperDAO/yhMapperDao.class b/后端的都放着里面/yhSearch/target/classes/mapperDAO/yhMapperDao.class new file mode 100644 index 0000000000000000000000000000000000000000..01d8f6ea85817550bfc17ed23e5ca0a2e148258b GIT binary patch literal 315 zcmY*VyH3ME5S$CdhL~4FK}nYgi4%3INQlajQ6i<^IE!<^zB}EWgZyh0d;lMXI72}w z_Mx5C%+7v(y?+3Bz-5Yoz;#2`vU{8rvfIvodon4G1+I3qCs~uOWU=0H83Yo~7MxwRV#9EryNkjYA5v^1?N`AOA1exQ8c(+b=yS{+ow zE9KR?=9$(eP*6sDfxFzeN_yLizBp?5&A3_8+D i5IBlo00z + + + \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/target/classes/service/yhService.class b/后端的都放着里面/yhSearch/target/classes/service/yhService.class new file mode 100644 index 0000000000000000000000000000000000000000..53c4612e82096efa9c98ee398f3ad8fc49460feb GIT binary patch literal 196 zcmY+8%?g4*6ot>Va>^j;5!&e{Y3;t1U?8-g#z99+WBh?$twj&eLq%7DqTS_uhwq-} z>;3?+$5Ox{Y+7vxqjY#H($6I@C9F$1$gq-i9wz5ftB&BdT3S^QwtoDhX=hEHM?su5 z7intN9FvI4{WX)FW|99#f)l|@o8BsYFctIF_wR0$x&*?6_W=&in8C$3M_|qgVKL_L E-r8s|fdBvi literal 0 HcmV?d00001 diff --git a/后端的都放着里面/yhSearch/target/classes/serviceimpl/yhServiceImpl.class b/后端的都放着里面/yhSearch/target/classes/serviceimpl/yhServiceImpl.class new file mode 100644 index 0000000000000000000000000000000000000000..e47a440880ba4d966c86c686ed33f4aca39d2586 GIT binary patch literal 953 zcmb7CU60a06g^YETqpvo`{Ax%_z9TU_-2C95R8dQbyWX?91P^0p!abw(!r`X{PA@U)L~1c6+W#zl zn{Z!Fq|j7am~%f748brOt(e$Q!ihHY1Q z+#hl+Q@lFNo0%jnhwiz~QqN*6xb|iY&6c~icwkcH-L^Yc0hb{;_vWa(1v1S>2^T6j z#I+KxGVGk`u8m#n(ctk1IZlWBhnV^%(U=<=z24er(jKPdw{6@+lNc7Wh%T|Zk-|_O zs6>0>h0L^XJeG%PFNV&U7Z@9%g))msIDHjFDion152_msXp+txtpY78l}mApUTTd{ znPP>o9n+6Ai7tfp8XY?n8O1{9E9#%=!@@T0#q7|=CHl6P3Al_MLM(NO_O$pJWm^<0 zoiEsb@C^qRJ`wzrqLESTF4I;N=`h!EgGg9v*ov(G7uhWf>v_r + + + + + + \ No newline at end of file diff --git a/后端的都放着里面/yhSearch/target/classes/spring-mvc.xml b/后端的都放着里面/yhSearch/target/classes/spring-mvc.xml new file mode 100644 index 0000000..c1090a2 --- /dev/null +++ b/后端的都放着里面/yhSearch/target/classes/spring-mvc.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/target/classes/spring-mybatis.xml b/后端的都放着里面/yhSearch/target/classes/spring-mybatis.xml new file mode 100644 index 0000000..35dbc99 --- /dev/null +++ b/后端的都放着里面/yhSearch/target/classes/spring-mybatis.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + dialect=mysql + reasonable=true + + + + + + + + + + + + + + + + + + diff --git a/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF b/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF new file mode 100644 index 0000000..f44188e --- /dev/null +++ b/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF @@ -0,0 +1,5 @@ +Manifest-Version: 1.0 +Built-By: yuanhangpc +Build-Jdk: 1.8.0_152 +Created-By: Maven Integration for Eclipse + diff --git a/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.properties b/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.properties new file mode 100644 index 0000000..418fb8c --- /dev/null +++ b/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.properties @@ -0,0 +1,7 @@ +#Generated by Maven Integration for Eclipse +#Sat Jan 12 16:17:25 CST 2019 +version=0.0.1-SNAPSHOT +groupId=yonghu +m2e.projectName=yhSearch +m2e.projectLocation=H\:\\sts-bundle\\yhSearch +artifactId=yhSearch diff --git a/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.xml b/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.xml new file mode 100644 index 0000000..3cf0e04 --- /dev/null +++ b/后端的都放着里面/yhSearch/target/m2e-wtp/web-resources/META-INF/maven/yonghu/yhSearch/pom.xml @@ -0,0 +1,154 @@ + + 4.0.0 + yonghu + yhSearch + war + 0.0.1-SNAPSHOT + yhSearch Maven Webapp + http://maven.apache.org + + + UTF-8 + UTF-8 + + 4.3.10.RELEASE + + + + + mysql + mysql-connector-java + 5.1.46 + + + junit + junit + 3.8.1 + test + + + + org.mybatis.generator + mybatis-generator-core + 1.3.5 + + + mysql + mysql-connector-java + 5.1.46 + + + + + org.springframework + spring-core + ${spring.version} + + + + org.springframework + spring-beans + ${spring.version} + + + + org.springframework + spring-context + ${spring.version} + + + + org.springframework + spring-jdbc + ${spring.version} + + + + org.springframework + spring-tx + ${spring.version} + + + + org.springframework + spring-web + ${spring.version} + + + + org.springframework + spring-webmvc + ${spring.version} + + + + org.springframework + spring-test + ${spring.version} + test + + + + + org.mybatis + mybatis + 3.4.2 + + + org.mybatis + mybatis-spring + 1.3.1 + + + c3p0 + c3p0 + 0.9.1.2 + + + commons-dbcp + commons-dbcp + 1.4 + + + + + junit + junit + 4.12 + test + + + + booksService + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.8 + 1.8 + UTF8 + true + + + + + org.mybatis.generator + mybatis-generator-maven-plugin + 1.3.5 + + + ${basedir}/src/main/resources/generatorConfig.xml + true + + + + + +