├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── FrontPart ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ └── web.xml └── index.html ├── LICENSE ├── README.md └── ServerPart ├── bean └── package-info.java ├── dao └── package-info.java ├── servlet └── package-info.java └── test └── package-info.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /FrontPart/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /FrontPart/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/FrontPart/WEB-INF/web.xml -------------------------------------------------------------------------------- /FrontPart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/FrontPart/index.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Library 2 | 图书馆管理系统(数据库课程设计) 3 | -------------------------------------------------------------------------------- /ServerPart/bean/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/ServerPart/bean/package-info.java -------------------------------------------------------------------------------- /ServerPart/dao/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/ServerPart/dao/package-info.java -------------------------------------------------------------------------------- /ServerPart/servlet/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/ServerPart/servlet/package-info.java -------------------------------------------------------------------------------- /ServerPart/test/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSephrioth/Library/HEAD/ServerPart/test/package-info.java --------------------------------------------------------------------------------