Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paoding-code/paoding-rose
paoding-rose 提供最好用的Java Web应用整体性框架。
https://github.com/paoding-code/paoding-rose
Last synced: 15 days ago
JSON representation
paoding-rose 提供最好用的Java Web应用整体性框架。
- Host: GitHub
- URL: https://github.com/paoding-code/paoding-rose
- Owner: paoding-code
- License: apache-2.0
- Created: 2012-02-22T06:47:00.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2019-03-22T04:55:14.000Z (over 5 years ago)
- Last Synced: 2024-08-01T16:29:02.187Z (3 months ago)
- Language: Java
- Homepage:
- Size: 1.31 MB
- Stars: 601
- Watchers: 128
- Forks: 343
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# paoding-rose
## Introduction
Paoding-rose is an open source framework, which introduces the best way to develop your web applications and RDMS applications.
Paoding-rose has been a main development framework of [renren.com](http://www.renren.com) (人人网), [mi.com](http://www.mi.com) (小米科技), [mocha.cn](http://mocha.cn) (抹茶美妆).
And we also receive reports that paoding-rose has been chosen in some applicaitons for [qunar.com](http://www.qunar.com/) (去哪儿), [focus.cn](http://www.focus.cn/) (焦点房产).
(如果您的公司也使用paoding-rose, 欢迎联系qieqie.wang at gmail.com)
## Enable paoding-rose in your java project
**Add dependencies to pom.xml in your maven project . **
The artifacts have been released to [oss.sonatype.org](https://oss.sonatype.org/content/groups/public/net/paoding/) and synced to [maven central repository](https://repo1.maven.org/maven2/net/paoding/)
```
net.paoding
paoding-rose-jade
2.0.u01net.paoding
paoding-rose-web
2.0.u01```
TIPs: 2.0.uxx means the xxth update of 2.0.## Enable SNAPSHOT dependency
If you always want your project using the lastest version, check ```2.0.uxx```to value 2.0-SNAPSHOT as following:
1) add snapshot repository to your pom.xml:```
// under project element
ossrh-snapshots
https://oss.sonatype.org/content/repositories/snapshots
false
true
```
2) checkout the the SNAPSHOT version:```
net.paoding
paoding-rose-jade
2.0-SNAPSHOTnet.paoding
paoding-rose-web
2.0-SNAPSHOT```