实例介绍
云笔记,是tmocc上的一个子项目,用于客户进行在线学习记录,分享,收藏笔记,以及参与社区活动。传入的文件中有整个项目的源码+HTML网页+建表sql语句+数据表联系图
【实例截图】
【核心代码】
636a71b2-954e-46c4-a3c7-6d4a105727c8
├── cloud_note
│ ├── pom.xml
│ ├── src
│ │ ├── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── lcz
│ │ │ │ └── cloud_note
│ │ │ │ ├── aspect
│ │ │ │ │ ├── AuditBean.java
│ │ │ │ │ ├── ExceptionBean.java
│ │ │ │ │ └── LoggerBean.java
│ │ │ │ ├── controller
│ │ │ │ │ ├── AddBookController.java
│ │ │ │ │ ├── AddNoteController.java
│ │ │ │ │ ├── ChangeUserController.java
│ │ │ │ │ ├── DeleteNoteController.java
│ │ │ │ │ ├── LoadBooksController.java
│ │ │ │ │ ├── LoadNoteController.java
│ │ │ │ │ ├── LoadNotesController.java
│ │ │ │ │ ├── LoadShareNoteController.java
│ │ │ │ │ ├── MoveNoteController.java
│ │ │ │ │ ├── ShareNoteController.java
│ │ │ │ │ ├── ShareSearchController.java
│ │ │ │ │ ├── UpdateNoteController.java
│ │ │ │ │ ├── UserLoginController.java
│ │ │ │ │ └── UserRegisterController.java
│ │ │ │ ├── dao
│ │ │ │ │ ├── BookDao.java
│ │ │ │ │ ├── NoteDao.java
│ │ │ │ │ ├── RelationDao.java
│ │ │ │ │ ├── ShareDao.java
│ │ │ │ │ └── UserDao.java
│ │ │ │ ├── entity
│ │ │ │ │ ├── Book.java
│ │ │ │ │ ├── Note.java
│ │ │ │ │ ├── Share.java
│ │ │ │ │ └── User.java
│ │ │ │ ├── service
│ │ │ │ │ ├── BookServiceImpl.java
│ │ │ │ │ ├── BookService.java
│ │ │ │ │ ├── NoteServiceImpl.java
│ │ │ │ │ ├── NoteService.java
│ │ │ │ │ ├── ShareServiceImpl.java
│ │ │ │ │ ├── ShareService.java
│ │ │ │ │ ├── UserServiceImpl.java
│ │ │ │ │ └── UserService.java
│ │ │ │ └── util
│ │ │ │ ├── NoteException.java
│ │ │ │ ├── NoteResult.java
│ │ │ │ └── NoteUtil.java
│ │ │ ├── resources
│ │ │ │ ├── conf
│ │ │ │ │ ├── spring_aop.xml
│ │ │ │ │ ├── spring_mvc.xml
│ │ │ │ │ ├── spring_mybatis.xml
│ │ │ │ │ └── spring_transaction.xml
│ │ │ │ └── mapper
│ │ │ │ ├── BookMapper.xml
│ │ │ │ ├── NoteMapper.xml
│ │ │ │ ├── RelationMapper.xml
│ │ │ │ ├── ShareMapper.xml
│ │ │ │ └── UserMapper.xml
│ │ │ └── webapp
│ │ │ ├── activity_detail.html
│ │ │ ├── activity.html
│ │ │ ├── alert
│ │ │ │ ├── alert_delete_like.html
│ │ │ │ ├── alert_delete_notebook.html
│ │ │ │ ├── alert_delete_note.html
│ │ │ │ ├── alert_delete_rollback.html
│ │ │ │ ├── alert_error.html
│ │ │ │ ├── alert_like.html
│ │ │ │ ├── alert_move.html
│ │ │ │ ├── alert_notebook.html
│ │ │ │ ├── alert_note.html
│ │ │ │ ├── alert_rename.html
│ │ │ │ └── alert_replay.html
│ │ │ ├── change_password.html
│ │ │ ├── edit.html
│ │ │ ├── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ ├── ico
│ │ │ │ ├── favico-114-precomposed.png
│ │ │ │ ├── favico-144-precomposed.png
│ │ │ │ ├── favico-57-precomposed.png
│ │ │ │ ├── favico-72-precomposed.png
│ │ │ │ ├── favicon.ico
│ │ │ │ └── favico.png
│ │ │ ├── images
│ │ │ │ ├── 08f8695d.select2-spinner.gif
│ │ │ │ ├── 156cc09f.spritemap.png
│ │ │ │ ├── 314be2a9.divider.png
│ │ │ │ ├── 424387e9.sort_asc_disabled.png
│ │ │ │ ├── 424387e9.sort_asc.png
│ │ │ │ ├── 728a75d4.sort_desc.png
│ │ │ │ ├── 85509794.jquery.minicolors.png
│ │ │ │ ├── a45183a1.select2x2.png
│ │ │ │ ├── a4d7e44b.switch.png
│ │ │ │ ├── acc49d9a.select2.png
│ │ │ │ ├── ca21017c.sort_both.png
│ │ │ │ ├── ca6a03e3.noise.png
│ │ │ │ ├── d85fba58.sort_desc_disabled.png
│ │ │ │ ├── dummy
│ │ │ │ │ ├── 07cb4eaa.img8.png
│ │ │ │ │ ├── 08f814dd.img12.png
│ │ │ │ │ ├── 0ab5f292.header-background.jpg
│ │ │ │ │ ├── 0c31c9dc.profile.jpg
│ │ │ │ │ ├── 0c31c9dc.uifaces22.jpg
│ │ │ │ │ ├── 1166769f.img11.png
│ │ │ │ │ ├── 1a6d8f34.img1.png
│ │ │ │ │ ├── 212fa4f2.logo-inverse.png
│ │ │ │ │ ├── 2590d12d.img2.png
│ │ │ │ │ ├── 3498f5b6.uifaces16.jpg
│ │ │ │ │ ├── 3a93212e.uifaces3.jpg
│ │ │ │ │ ├── 3e4d8287.img3.png
│ │ │ │ │ ├── 4206586f.stilearn-logo-alt-inverse.png
│ │ │ │ │ ├── 48ae2c25.uifaces1.jpg
│ │ │ │ │ ├── 48f4bb8e.Stilearn-logo-primary.png
│ │ │ │ │ ├── 4c7c0245.img4.png
│ │ │ │ │ ├── 4e4046ef.uifaces15.jpg
│ │ │ │ │ ├── 4e81cd8d.img6.png
│ │ │ │ │ ├── 598c0714.uifaces7.jpg
│ │ │ │ │ ├── 6139681b.stilearn-logo3.png
│ │ │ │ │ ├── 637ebb33.stilearn-logo-inverse.png
│ │ │ │ │ ├── 690243f1.uifaces6.jpg
│ │ │ │ │ ├── 6e33211b.stilearn-logo-alt-default.png
│ │ │ │ │ ├── 738072ec.uifaces13.jpg
│ │ │ │ │ ├── 75ccb40a.img5.png
│ │ │ │ │ ├── 782e8c3f.stilearn-logo2.png
│ │ │ │ │ ├── 7b14b475.img7.png
│ │ │ │ │ ├── 8986f28e.stilearn-logo.png
│ │ │ │ │ ├── 8af46bf8.uifaces21.jpg
│ │ │ │ │ ├── 96a1517e.img9.png
│ │ │ │ │ ├── 9c06e6a0.uifaces11.jpg
│ │ │ │ │ ├── a0c1c960.uifaces9.jpg
│ │ │ │ │ ├── a448a7ef.uifaces10.jpg
│ │ │ │ │ ├── b0f7e705.uifaces5.jpg
│ │ │ │ │ ├── b7f97507.uifaces4.jpg
│ │ │ │ │ ├── c0647842.uifaces17.jpg
│ │ │ │ │ ├── ce4e1a92.img10.png
│ │ │ │ │ ├── e05590e7.stilearn-logo4.png
│ │ │ │ │ ├── e326dfc8.logo.png
│ │ │ │ │ ├── e7dd5f45.uifaces8.jpg
│ │ │ │ │ ├── e8253fc8.uifaces18.jpg
│ │ │ │ │ ├── e9cc6303.uifaces20.jpg
│ │ │ │ │ ├── e9d19848.uifaces19.jpg
│ │ │ │ │ ├── f5a2c818.uifaces14.jpg
│ │ │ │ │ ├── f61536ae.uifaces2.jpg
│ │ │ │ │ ├── f71e3e28.stilearn-logo-default.png
│ │ │ │ │ └── fb3f89d7.uifaces12.jpg
│ │ │ │ ├── f5c1e285.spritemap@2x.png
│ │ │ │ └── icons.png
│ │ │ ├── log_in.html
│ │ │ ├── scripts
│ │ │ │ ├── activity.js
│ │ │ │ ├── alert.js
│ │ │ │ ├── base.js
│ │ │ │ ├── common
│ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ ├── js-prototype.js
│ │ │ │ │ ├── theme-setup.js
│ │ │ │ │ └── ue
│ │ │ │ │ ├── dialogs
│ │ │ │ │ │ ├── emotion
│ │ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ │ └── yface.gif
│ │ │ │ │ │ ├── formula
│ │ │ │ │ │ │ ├── formula.css
│ │ │ │ │ │ │ ├── formula.html
│ │ │ │ │ │ │ ├── formula.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ └── formula.png
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ ├── upload1.png
│ │ │ │ │ │ │ └── upload2.png
│ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ ├── map
│ │ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ │ └── map.js
│ │ │ │ │ │ └── video
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ └── right_focus.jpg
│ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ └── video.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── en
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ │ ├── imglabel.png
│ │ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ │ └── upload.png
│ │ │ │ │ │ ├── zh-cn
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ │ │ ├── imglabel.png
│ │ │ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ │ │ └── upload.png
│ │ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ │ └── zh-cn.js
│ │ │ │ │ ├── umeditor.config.js
│ │ │ │ │ └── umeditor.min.js
│ │ │ │ ├── cookie_util.js
│ │ │ │ ├── login.js
│ │ │ │ ├── notebook.js
│ │ │ │ └── note.js
│ │ │ ├── sounds
│ │ │ │ ├── aurora.mp3
│ │ │ │ ├── bamboo.mp3
│ │ │ │ ├── chord.mp3
│ │ │ │ ├── circles.mp3
│ │ │ │ ├── complete.mp3
│ │ │ │ ├── hello.mp3
│ │ │ │ ├── input.mp3
│ │ │ │ ├── keys.mp3
│ │ │ │ ├── note.mp3
│ │ │ │ ├── popcorn.mp3
│ │ │ │ ├── pulse.mp3
│ │ │ │ └── synth.mp3
│ │ │ ├── styles
│ │ │ │ ├── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ └── glyphicons-halflings-regular.woff
│ │ │ │ ├── icon.css
│ │ │ │ ├── login.css
│ │ │ │ ├── login_ghost.css
│ │ │ │ ├── main.css
│ │ │ │ ├── prettify.css
│ │ │ │ └── umeditor.min.css
│ │ │ └── WEB-INF
│ │ │ └── web.xml
│ │ └── test
│ │ └── java
│ │ └── test
│ │ ├── dao
│ │ │ ├── TestBookDao.java
│ │ │ ├── TestNoteDao.java
│ │ │ ├── TestRelationDao.java
│ │ │ └── TestUserDao.java
│ │ ├── service
│ │ │ ├── TestBookService.java
│ │ │ ├── TestNoteService.java
│ │ │ └── TestUserService.java
│ │ └── TestBase.java
│ └── target
│ ├── classes
│ │ ├── com
│ │ │ └── lcz
│ │ │ └── cloud_note
│ │ │ ├── aspect
│ │ │ │ ├── AuditBean.class
│ │ │ │ ├── ExceptionBean.class
│ │ │ │ └── LoggerBean.class
│ │ │ ├── controller
│ │ │ │ ├── AddBookController.class
│ │ │ │ ├── AddNoteController.class
│ │ │ │ ├── ChangeUserController.class
│ │ │ │ ├── DeleteNoteController.class
│ │ │ │ ├── LoadBooksController.class
│ │ │ │ ├── LoadNoteController.class
│ │ │ │ ├── LoadNotesController.class
│ │ │ │ ├── LoadShareNoteController.class
│ │ │ │ ├── MoveNoteController.class
│ │ │ │ ├── ShareNoteController.class
│ │ │ │ ├── ShareSearchController.class
│ │ │ │ ├── UpdateNoteController.class
│ │ │ │ ├── UserLoginController.class
│ │ │ │ └── UserRegisterController.class
│ │ │ ├── dao
│ │ │ │ ├── BookDao.class
│ │ │ │ ├── NoteDao.class
│ │ │ │ ├── RelationDao.class
│ │ │ │ ├── ShareDao.class
│ │ │ │ └── UserDao.class
│ │ │ ├── entity
│ │ │ │ ├── Book.class
│ │ │ │ ├── Note.class
│ │ │ │ ├── Share.class
│ │ │ │ └── User.class
│ │ │ ├── service
│ │ │ │ ├── BookService.class
│ │ │ │ ├── BookServiceImpl.class
│ │ │ │ ├── NoteService.class
│ │ │ │ ├── NoteServiceImpl.class
│ │ │ │ ├── ShareService.class
│ │ │ │ ├── ShareServiceImpl.class
│ │ │ │ ├── UserService.class
│ │ │ │ └── UserServiceImpl.class
│ │ │ └── util
│ │ │ ├── NoteException.class
│ │ │ ├── NoteResult.class
│ │ │ └── NoteUtil.class
│ │ ├── conf
│ │ │ ├── spring_aop.xml
│ │ │ ├── spring_mvc.xml
│ │ │ ├── spring_mybatis.xml
│ │ │ └── spring_transaction.xml
│ │ └── mapper
│ │ ├── BookMapper.xml
│ │ ├── NoteMapper.xml
│ │ ├── RelationMapper.xml
│ │ ├── ShareMapper.xml
│ │ └── UserMapper.xml
│ ├── m2e-wtp
│ │ └── web-resources
│ │ └── META-INF
│ │ ├── MANIFEST.MF
│ │ └── maven
│ │ └── com.lcz
│ │ └── cloud_note
│ │ ├── pom.properties
│ │ └── pom.xml
│ └── test-classes
│ └── test
│ ├── dao
│ │ ├── TestBookDao.class
│ │ ├── TestNoteDao.class
│ │ ├── TestRelationDao.class
│ │ └── TestUserDao.class
│ ├── service
│ │ ├── TestBookService.class
│ │ ├── TestNoteService.class
│ │ └── TestUserService.class
│ └── TestBase.class
├── cloud_note.sql
├── HTML
│ ├── activity_detail.html
│ ├── activity.html
│ ├── alert
│ │ ├── alert_delete_like.html
│ │ ├── alert_delete_notebook.html
│ │ ├── alert_delete_note.html
│ │ ├── alert_delete_rollback.html
│ │ ├── alert_error.html
│ │ ├── alert_like.html
│ │ ├── alert_move.html
│ │ ├── alert_notebook.html
│ │ ├── alert_note.html
│ │ ├── alert_rename.html
│ │ └── alert_replay.html
│ ├── change_password.html
│ ├── edit.html
│ ├── edit.html.bak
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── ico
│ │ ├── favico-114-precomposed.png
│ │ ├── favico-144-precomposed.png
│ │ ├── favico-57-precomposed.png
│ │ ├── favico-72-precomposed.png
│ │ ├── favicon.ico
│ │ └── favico.png
│ ├── images
│ │ ├── 08f8695d.select2-spinner.gif
│ │ ├── 156cc09f.spritemap.png
│ │ ├── 314be2a9.divider.png
│ │ ├── 424387e9.sort_asc_disabled.png
│ │ ├── 424387e9.sort_asc.png
│ │ ├── 728a75d4.sort_desc.png
│ │ ├── 85509794.jquery.minicolors.png
│ │ ├── a45183a1.select2x2.png
│ │ ├── a4d7e44b.switch.png
│ │ ├── acc49d9a.select2.png
│ │ ├── ca21017c.sort_both.png
│ │ ├── ca6a03e3.noise.png
│ │ ├── d85fba58.sort_desc_disabled.png
│ │ ├── dummy
│ │ │ ├── 07cb4eaa.img8.png
│ │ │ ├── 08f814dd.img12.png
│ │ │ ├── 0ab5f292.header-background.jpg
│ │ │ ├── 0c31c9dc.profile.jpg
│ │ │ ├── 0c31c9dc.uifaces22.jpg
│ │ │ ├── 1166769f.img11.png
│ │ │ ├── 1a6d8f34.img1.png
│ │ │ ├── 212fa4f2.logo-inverse.png
│ │ │ ├── 2590d12d.img2.png
│ │ │ ├── 3498f5b6.uifaces16.jpg
│ │ │ ├── 3a93212e.uifaces3.jpg
│ │ │ ├── 3e4d8287.img3.png
│ │ │ ├── 4206586f.stilearn-logo-alt-inverse.png
│ │ │ ├── 48ae2c25.uifaces1.jpg
│ │ │ ├── 48f4bb8e.Stilearn-logo-primary.png
│ │ │ ├── 4c7c0245.img4.png
│ │ │ ├── 4e4046ef.uifaces15.jpg
│ │ │ ├── 4e81cd8d.img6.png
│ │ │ ├── 598c0714.uifaces7.jpg
│ │ │ ├── 6139681b.stilearn-logo3.png
│ │ │ ├── 637ebb33.stilearn-logo-inverse.png
│ │ │ ├── 690243f1.uifaces6.jpg
│ │ │ ├── 6e33211b.stilearn-logo-alt-default.png
│ │ │ ├── 738072ec.uifaces13.jpg
│ │ │ ├── 75ccb40a.img5.png
│ │ │ ├── 782e8c3f.stilearn-logo2.png
│ │ │ ├── 7b14b475.img7.png
│ │ │ ├── 8986f28e.stilearn-logo.png
│ │ │ ├── 8af46bf8.uifaces21.jpg
│ │ │ ├── 96a1517e.img9.png
│ │ │ ├── 9c06e6a0.uifaces11.jpg
│ │ │ ├── a0c1c960.uifaces9.jpg
│ │ │ ├── a448a7ef.uifaces10.jpg
│ │ │ ├── b0f7e705.uifaces5.jpg
│ │ │ ├── b7f97507.uifaces4.jpg
│ │ │ ├── c0647842.uifaces17.jpg
│ │ │ ├── ce4e1a92.img10.png
│ │ │ ├── e05590e7.stilearn-logo4.png
│ │ │ ├── e326dfc8.logo.png
│ │ │ ├── e7dd5f45.uifaces8.jpg
│ │ │ ├── e8253fc8.uifaces18.jpg
│ │ │ ├── e9cc6303.uifaces20.jpg
│ │ │ ├── e9d19848.uifaces19.jpg
│ │ │ ├── f5a2c818.uifaces14.jpg
│ │ │ ├── f61536ae.uifaces2.jpg
│ │ │ ├── f71e3e28.stilearn-logo-default.png
│ │ │ └── fb3f89d7.uifaces12.jpg
│ │ ├── f5c1e285.spritemap@2x.png
│ │ └── icons.png
│ ├── login.html
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── scripts
│ │ ├── activity.js
│ │ ├── base.js
│ │ ├── common
│ │ │ ├── bootstrap.min.js
│ │ │ ├── jquery.min.js
│ │ │ ├── js-prototype.js
│ │ │ ├── theme-setup.js
│ │ │ └── ue
│ │ │ ├── dialogs
│ │ │ │ ├── emotion
│ │ │ │ │ ├── emotion.css
│ │ │ │ │ ├── emotion.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── bface.gif
│ │ │ │ │ ├── cface.gif
│ │ │ │ │ ├── fface.gif
│ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ ├── tface.gif
│ │ │ │ │ ├── wface.gif
│ │ │ │ │ └── yface.gif
│ │ │ │ ├── formula
│ │ │ │ │ ├── formula.css
│ │ │ │ │ ├── formula.html
│ │ │ │ │ ├── formula.js
│ │ │ │ │ └── images
│ │ │ │ │ └── formula.png
│ │ │ │ ├── image
│ │ │ │ │ ├── image.css
│ │ │ │ │ ├── image.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── close.png
│ │ │ │ │ ├── upload1.png
│ │ │ │ │ └── upload2.png
│ │ │ │ ├── link
│ │ │ │ │ └── link.js
│ │ │ │ ├── map
│ │ │ │ │ ├── map.html
│ │ │ │ │ └── map.js
│ │ │ │ └── video
│ │ │ │ ├── images
│ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ └── right_focus.jpg
│ │ │ │ ├── video.css
│ │ │ │ └── video.js
│ │ │ ├── lang
│ │ │ │ ├── en
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── images
│ │ │ │ │ ├── addimage.png
│ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ ├── background.png
│ │ │ │ │ ├── button.png
│ │ │ │ │ ├── copy.png
│ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ ├── imglabel.png
│ │ │ │ │ ├── listbackground.png
│ │ │ │ │ ├── localimage.png
│ │ │ │ │ ├── music.png
│ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ └── upload.png
│ │ │ │ ├── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── imglabel.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ └── zh-cn.js
│ │ │ ├── umeditor.config.js
│ │ │ └── umeditor.min.js
│ │ ├── cookie.js
│ │ ├── local.js
│ │ ├── login.js
│ │ ├── notebook.js
│ │ └── note.js
│ ├── styles
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── icon.css
│ │ ├── login.css
│ │ ├── login_ghost.css
│ │ ├── main.css
│ │ ├── prettify.css
│ │ └── umeditor.min.css
│ └── WEB-INF
│ ├── classes
│ │ ├── applicationContext.xml
│ │ ├── base.properties
│ │ ├── com
│ │ │ └── tarena
│ │ │ ├── common
│ │ │ │ ├── BaseReader.class
│ │ │ │ ├── BusinessException.class
│ │ │ │ ├── ExceptionLogger.class
│ │ │ │ ├── Md5Util.class
│ │ │ │ ├── SystemConstant.class
│ │ │ │ └── UUIDUtil.class
│ │ │ ├── dao
│ │ │ │ ├── ActivityMapper.class
│ │ │ │ ├── ActivityMapper.xml
│ │ │ │ ├── MyBatisRepository.class
│ │ │ │ ├── NoteBookMapper.class
│ │ │ │ ├── NoteBookMapper.xml
│ │ │ │ ├── NoteBookTypeMapper.class
│ │ │ │ ├── NoteBookTypeMapper.xml
│ │ │ │ ├── NoteMapper.class
│ │ │ │ ├── NoteMapper.xml
│ │ │ │ ├── ShareMapper.class
│ │ │ │ ├── ShareMapper.xml
│ │ │ │ ├── UserMapper.class
│ │ │ │ └── UserMapper.xml
│ │ │ ├── entity
│ │ │ │ ├── Activity.class
│ │ │ │ ├── Entity.class
│ │ │ │ ├── NoteActivity.class
│ │ │ │ ├── NoteBook.class
│ │ │ │ ├── NoteBookType.class
│ │ │ │ ├── Note.class
│ │ │ │ ├── Result.class
│ │ │ │ ├── Share.class
│ │ │ │ └── User.class
│ │ │ ├── service
│ │ │ │ ├── ActivityService.class
│ │ │ │ ├── NoteBookService.class
│ │ │ │ ├── NoteService.class
│ │ │ │ └── UserService.class
│ │ │ └── web
│ │ │ ├── ActivityController.class
│ │ │ ├── interceptor
│ │ │ │ └── LoginInterceptor.class
│ │ │ ├── NoteBookController.class
│ │ │ ├── NoteController.class
│ │ │ └── UserController.class
│ │ ├── jdbc.properties
│ │ ├── log4j.properties
│ │ └── test
│ │ ├── TestNoteBookMapper.class
│ │ ├── TestNoteBookTypeMapper.class
│ │ ├── TestNoteMapper.class
│ │ ├── TestShareMapper.class
│ │ └── TestUserMapper.class
│ ├── lib
│ │ ├── aopalliance.jar
│ │ ├── aspectjweaver.jar
│ │ ├── commons-collections-3.1.jar
│ │ ├── commons-dbcp-1.2.2.jar
│ │ ├── commons-logging.jar
│ │ ├── commons-pool.jar
│ │ ├── jackson-annotations-2.4.1.jar
│ │ ├── jackson-core-2.4.1.jar
│ │ ├── jackson-databind-2.4.1.jar
│ │ ├── log4j-1.2.11.jar
│ │ ├── mybatis-3.2.5.jar
│ │ ├── mybatis-spring-1.2.2.jar
│ │ ├── mysql-connector-java-5.1.8-bin.jar
│ │ ├── spring-aop-3.2.8.RELEASE.jar
│ │ ├── spring-aspects-3.2.8.RELEASE.jar
│ │ ├── spring-beans-3.2.8.RELEASE.jar
│ │ ├── spring-context-3.2.8.RELEASE.jar
│ │ ├── spring-core-3.2.8.RELEASE.jar
│ │ ├── spring-expression-3.2.8.RELEASE.jar
│ │ ├── spring-jdbc-3.2.8.RELEASE.jar
│ │ ├── spring-tx-3.2.8.RELEASE.jar
│ │ ├── spring-web-3.2.8.RELEASE.jar
│ │ └── spring-webmvc-3.2.8.RELEASE.jar
│ └── web.xml
└── 数据库表联系.png
113 directories, 549 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论