基本信息
源码名称:修改、 删除和查询招聘信息 、显示企业信息 和增加企业信息
源码大小:3.19M
文件格式:.zip
开发语言:Java
更新时间:2021-12-20
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
.
├── recruit
│ ├── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── lib
│ │ │ │ ├── jstl.jar
│ │ │ │ ├── mysql-connector-java-8.0.16.jar
│ │ │ │ └── standard.jar
│ │ │ └── web.xml
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap-theme.min.css.map
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ └── bootstrap.min.css.map
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── img
│ │ │ └── logo.webp
│ │ ├── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery-3.3.1.js
│ │ │ └── npm.js
│ │ └── manager
│ │ ├── add.html
│ │ ├── addInfo.jsp
│ │ ├── demo.jsp
│ │ ├── enter
│ │ │ ├── addInfo.jsp
│ │ │ └── showAllInfo.jsp
│ │ ├── header.jsp
│ │ ├── message.jsp
│ │ ├── resume.jsp
│ │ ├── showAllInfo.jsp
│ │ ├── updateInfo.jsp
│ │ └── welcome.jsp
│ ├── lib
│ │ ├── hamcrest-core-1.3.jar
│ │ └── junit-4.12.jar
│ └── src
│ ├── com
│ │ └── chinasofti
│ │ └── recruit
│ │ ├── dao
│ │ │ ├── EnterpriseinfoDao.java
│ │ │ ├── ReinformationDao.java
│ │ │ └── impl
│ │ │ ├── EnterpriseinfoDaoImpl.java
│ │ │ └── ReinformationDaoImpl.java
│ │ ├── entity
│ │ │ ├── Enterpriseinfo.java
│ │ │ ├── Reinformation.java
│ │ │ ├── Resume.java
│ │ │ └── Userinfo.java
│ │ ├── filter
│ │ │ └── EncodingFilter.java
│ │ ├── service
│ │ │ ├── EnterpriseinfoService.java
│ │ │ ├── ReinformationService.java
│ │ │ └── impl
│ │ │ ├── EnterpriseinfoServicelmpl.java
│ │ │ └── ReinformationServiceImpl.java
│ │ ├── servlet
│ │ │ ├── EnterpriseinfoServlet.java
│ │ │ └── ReinformationServlet.java
│ │ ├── test
│ │ │ └── MyTest.java
│ │ └── util
│ │ └── DBUtil.java
│ └── db.properties
└── 好例子网_0701.zip
25 directories, 55 files
修改、 删除和查询招聘信息 、显示企业信息 和增加企业信息
.
├── recruit
│ ├── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── lib
│ │ │ │ ├── jstl.jar
│ │ │ │ ├── mysql-connector-java-8.0.16.jar
│ │ │ │ └── standard.jar
│ │ │ └── web.xml
│ │ ├── css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ ├── bootstrap-theme.min.css
│ │ │ ├── bootstrap-theme.min.css.map
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ └── bootstrap.min.css.map
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── img
│ │ │ └── logo.webp
│ │ ├── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery-3.3.1.js
│ │ │ └── npm.js
│ │ └── manager
│ │ ├── add.html
│ │ ├── addInfo.jsp
│ │ ├── demo.jsp
│ │ ├── enter
│ │ │ ├── addInfo.jsp
│ │ │ └── showAllInfo.jsp
│ │ ├── header.jsp
│ │ ├── message.jsp
│ │ ├── resume.jsp
│ │ ├── showAllInfo.jsp
│ │ ├── updateInfo.jsp
│ │ └── welcome.jsp
│ ├── lib
│ │ ├── hamcrest-core-1.3.jar
│ │ └── junit-4.12.jar
│ └── src
│ ├── com
│ │ └── chinasofti
│ │ └── recruit
│ │ ├── dao
│ │ │ ├── EnterpriseinfoDao.java
│ │ │ ├── ReinformationDao.java
│ │ │ └── impl
│ │ │ ├── EnterpriseinfoDaoImpl.java
│ │ │ └── ReinformationDaoImpl.java
│ │ ├── entity
│ │ │ ├── Enterpriseinfo.java
│ │ │ ├── Reinformation.java
│ │ │ ├── Resume.java
│ │ │ └── Userinfo.java
│ │ ├── filter
│ │ │ └── EncodingFilter.java
│ │ ├── service
│ │ │ ├── EnterpriseinfoService.java
│ │ │ ├── ReinformationService.java
│ │ │ └── impl
│ │ │ ├── EnterpriseinfoServicelmpl.java
│ │ │ └── ReinformationServiceImpl.java
│ │ ├── servlet
│ │ │ ├── EnterpriseinfoServlet.java
│ │ │ └── ReinformationServlet.java
│ │ ├── test
│ │ │ └── MyTest.java
│ │ └── util
│ │ └── DBUtil.java
│ └── db.properties
└── 好例子网_0701.zip
25 directories, 55 files