修改、 删除和查询招聘信息 、显示企业信息 和增加企业信息
.
├── 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
评论