├── .gitignore ├── LICENSE ├── README.md ├── h5.sql ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── luban │ │ └── api │ │ └── lubanapi │ │ ├── LubanApiApplication.java │ │ ├── config │ │ ├── JsonConfig.java │ │ ├── MybatisPlusConfig.java │ │ └── SwaggerConfiguration.java │ │ ├── constant │ │ └── PackageConstant.java │ │ ├── controller │ │ ├── UploadController.java │ │ ├── WorkController.java │ │ └── WorkFormsController.java │ │ ├── convert │ │ └── WorkConvert.java │ │ ├── dao │ │ ├── WorkDao.java │ │ ├── WorkDao.xml │ │ ├── WorkFormsDao.java │ │ └── WorkFormsDao.xml │ │ ├── dto │ │ ├── PageDtoBase.java │ │ ├── WorkCreateDTO.java │ │ ├── WorkQueryDTO.java │ │ └── WorkUpdateDTO.java │ │ ├── entity │ │ ├── Work.java │ │ └── WorkForms.java │ │ ├── exception │ │ ├── ExceptionHandle.java │ │ └── UnifiedException.java │ │ ├── log │ │ ├── P6SpyLogger.java │ │ └── StdoutLogger.java │ │ ├── service │ │ ├── WorkFormsService.java │ │ ├── WorkService.java │ │ └── impl │ │ │ ├── WorkFormsServiceImpl.java │ │ │ └── WorkServiceImpl.java │ │ ├── util │ │ └── JSON.java │ │ └── vo │ │ ├── FileVO.java │ │ ├── Result.java │ │ └── WorkVO.java └── resources │ ├── META-INF │ └── additional-spring-configuration-metadata.json │ ├── application-dev.yml │ ├── application-prod.yml │ ├── application.yml │ └── spy.properties └── test └── java └── com └── luban └── api └── lubanapi ├── GenerateCode.java └── LubanApiApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.nar 17 | *.ear 18 | *.zip 19 | *.tar.gz 20 | *.rar 21 | 22 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 23 | hs_err_pid* 24 | HELP.md 25 | target/ 26 | !.mvn/wrapper/maven-wrapper.jar 27 | !**/src/main/** 28 | !**/src/test/** 29 | 30 | ### STS ### 31 | .apt_generated 32 | .classpath 33 | .factorypath 34 | .project 35 | .settings 36 | .springBeans 37 | .sts4-cache 38 | 39 | ### IntelliJ IDEA ### 40 | .idea 41 | *.iws 42 | *.iml 43 | *.ipr 44 | 45 | ### NetBeans ### 46 | /nbproject/private/ 47 | /nbbuild/ 48 | /dist/ 49 | /nbdist/ 50 | /.nb-gradle/ 51 | build/ 52 | 53 | ### VS Code ### 54 | .vscode/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 2 | [![码云](https://img.shields.io/badge/Gitee--yellow.svg?style=social&logo=data:image/svg+xml;base64,PHN2ZyB0PSIxNTc0ODM3MTM4ODM3IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjE3NzAiICAgICB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPiAgICA8cGF0aCBkPSJNODkxIDQyOC44SDQ2NS44Yy0yMC40IDAtMzcgMTYuNS0zNyAzN3Y5Mi40YzAgMjAuNCAxNi41IDM3IDM3IDM3aDI1OC45YzIwLjQgMCAzNyAxNi42IDM3IDM3djE4LjRjMCA2MS4zLTQ5LjcgMTEwLjktMTEwLjkgMTEwLjlIMjk5LjRjLTIwLjQgMC0zNy0xNi42LTM3LTM3VjM3My4yYzAtNjEuMyA0OS43LTExMC45IDExMC45LTExMC45aDUxNy42YzIwLjQgMCAzNy0xNi41IDM3LTM3bDAuMS05Mi4zYzAtMjAuNC0xNi41LTM3LTM3LTM3SDM3My4zQzIyMC4yIDk2IDk2IDIyMC4yIDk2IDM3My4zVjg5MWMwIDIwLjQgMTYuNiAzNyAzNyAzN2g1NDUuNEM4MTYuMiA5MjggOTI4IDgxNi4zIDkyOCA2NzguNFY0NjUuOGMwLTIwLjQtMTYuNi0zNy0zNy0zN3oiICAgICAgICAgIGZpbGw9IiNkODFlMDYiIHAtaWQ9IjE3NzEiPjwvcGF0aD48L3N2Zz4=)](https://gitee.com/weihongbin/luban-api.git) 3 | [![Github](https://img.shields.io/badge/GitHub--yellow.svg?style=social&logo=github)](https://github.com/luban-h5/springboot2-mybatis-plus-api-for-luban.git) 4 | 5 | 6 | # springboot2-mybatis-plus-api-for-luban 7 | 8 | * #!zh: 为[鲁班H5](https://github.com/ly525/luban-h5) 提供 由 [Spring Boot](https://spring.io/projects/spring-boot) 驱动的后端 API 9 | * #!zh: 现在仍然在完善中,非常欢迎 PR,如果您想参与贡献,可以直接 Pull Request。也可以和作者直接联系, [联系方式](https://github.com/ly525/luban-h5#%E4%BA%A4%E6%B5%81%E7%BE%A4) 10 | 11 | --- 12 | 13 | * #!en: Demo API for [Luban-H5-Editor-Module](https://github.com/ly525/luban-h5) powered by [Spring Boot](https://spring.io/projects/spring-boot) 14 | * #!en It is still working is progress, so pr is welcome!(now it's just a demo) 15 | 16 | #### 相关文档 17 | * [说明文档(WIP/完善中)](https://www.yuque.com/xpm1xa/rgf7kz/xkm4aq) 18 | 19 | 20 | ### TODO 21 | > pr is welcome! 22 | 23 | - [x] Get Work By Id 24 | - [x] Get All Works 25 | - [x] Update Work 26 | - [x] Create Work 27 | - [x] Delete Work 28 | - [ ] Upload Work Cover 29 | - [ ] Cors Proxy 30 | - [x] Set Work as Template 31 | - [ ] create Work based on Template 32 | 33 | 34 | ### Development 35 | 1. 使用 init.sql 初始化数据库 36 | 2. 修改 src/main/resources/application-dev.yml 中的 mysql 相关配置 37 | 3. 修改 src/main/resources/application-prod.yml 中的 mysql 相关配置 38 | 39 | 40 | 41 | > #!zh 前后端联调开发 42 | 43 | > * [Node、yarn 安装教程](https://github.com/ly525/luban-h5/blob/dev/docs/zh/getting-started/quick-start.md#nodeyarnnpm%E5%AE%89%E8%A3%85) 44 | > * 请使用 yarn 安装依赖,而非 npm,原因参见 [#92](https://github.com/ly525/luban-h5/issues/92) 和 [#101](https://github.com/ly525/luban-h5/issues/101) 45 | > * 安装前端项目依赖,[前端开发文档](https://github.com/ly525/luban-h5/blob/dev/docs/zh/getting-started/quick-start.md): 46 | 47 | 48 | ```bash 49 | git clone https://github.com/ly525/luban-h5 50 | cd luban-h5/front-end/h5 51 | yarn install 52 | # #!en modify `target` in `vue.config.js` 53 | # #!zh 修改 vue.config.js 中的 target 变量,比如:const target = 'http://127.0.0.1:8888', 54 | # #!zh 8888 为 spring-boot-api-for-editor 提供服务的端口, 修改完毕之后,运行下面的命令,即可启动前端服务进行联调 55 | yarn serve # 是 serve 不是 server! 56 | ``` 57 | 另外开一个terminal 58 | 59 | open another terminal 60 | ```shell script 61 | git clone https://github.com/luban-h5/springboot2-mybatis-plus-api-for-luban.git 62 | cd springboot2-mybatis-plus-api-for-luban 63 | mvn spring-boot:run 64 | ``` 65 | 接口文档 地址 66 | ```text 67 | http://[host]:[port]/doc.html 68 | ``` 69 | ### 启动 Spring Boot 项目,联调开始 70 | #### 技术栈(当前) 71 | 1. [SpringBoot](https://spring.io/projects/spring-boot) 72 | - Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need very little Spring configuration. 73 | 2. [Mybatis Plus](https://mybatis.plus/) 74 | - MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 75 | 3. [knife4j](https://doc.xiaominfo.com/) 76 | - knife4j是为Java MVC框架集成Swagger生成Api文档的增强解决方案 77 | 4. [p6spy](https://github.com/p6spy/p6spy) 78 | - P6Spy is a framework that enables database data to be seamlessly intercepted and logged with no code changes to the application. 79 | -------------------------------------------------------------------------------- /h5.sql: -------------------------------------------------------------------------------- 1 | SET NAMES utf8mb4; 2 | SET FOREIGN_KEY_CHECKS = 0; 3 | 4 | -- ---------------------------- 5 | -- Table structure for work 6 | -- ---------------------------- 7 | DROP TABLE IF EXISTS `work`; 8 | CREATE TABLE `work` 9 | ( 10 | `id` bigint(20) NOT NULL AUTO_INCREMENT, 11 | `title` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '标题', 12 | `description` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '描述', 13 | `cover_image_url` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL, 14 | `pages` json NULL, 15 | `publish` tinyint(1) NOT NULL DEFAULT 0, 16 | `template` tinyint(1) NOT NULL DEFAULT 0, 17 | `create_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间', 18 | `update_time` datetime(0) NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '更新时间', 19 | PRIMARY KEY (`id`) USING BTREE 20 | ) ENGINE = InnoDB 21 | AUTO_INCREMENT = 14 22 | CHARACTER SET = utf8 23 | COLLATE = utf8_general_ci 24 | ROW_FORMAT = Dynamic; 25 | 26 | -- ---------------------------- 27 | -- Table structure for work_forms 28 | -- ---------------------------- 29 | DROP TABLE IF EXISTS `work_forms`; 30 | CREATE TABLE `work_forms` 31 | ( 32 | `id` bigint(20) NOT NULL AUTO_INCREMENT, 33 | `form` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL, 34 | `work_id` bigint(20) NOT NULL, 35 | PRIMARY KEY (`id`) USING BTREE, 36 | INDEX `work_id` (`work_id`) USING BTREE, 37 | CONSTRAINT `work_forms_ibfk_1` FOREIGN KEY (`work_id`) REFERENCES `work` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT 38 | ) ENGINE = InnoDB 39 | AUTO_INCREMENT = 1 40 | CHARACTER SET = utf8 41 | COLLATE = utf8_general_ci 42 | ROW_FORMAT = Dynamic; 43 | 44 | SET FOREIGN_KEY_CHECKS = 1; 45 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 4.0.0 5 | 6 | org.springframework.boot 7 | spring-boot-starter-parent 8 | 2.2.1.RELEASE 9 | 10 | 11 | com.luban.api 12 | luban-api 13 | 0.0.1-SNAPSHOT 14 | luban-api 15 | 鲁班H5 API 16 | 17 | 18 | 1.8 19 | 1.9.6 20 | 1.2.49 21 | 22 | 23 | 24 | 25 | org.springframework.boot 26 | spring-boot-starter-web 27 | 28 | 29 | mysql 30 | mysql-connector-java 31 | runtime 32 | 33 | 34 | 35 | 36 | com.baomidou 37 | mybatis-plus-boot-starter 38 | 3.2.0 39 | 40 | 41 | com.baomidou 42 | mybatis-plus-generator 43 | 3.2.0 44 | 45 | 46 | org.apache.velocity 47 | velocity-engine-core 48 | 2.1 49 | 50 | 51 | p6spy 52 | p6spy 53 | 3.8.5 54 | 55 | 56 | 57 | org.springframework.boot 58 | spring-boot-devtools 59 | runtime 60 | true 61 | 62 | 63 | org.projectlombok 64 | lombok 65 | true 66 | 67 | 68 | com.github.xiaoymin 69 | knife4j-spring-boot-starter 70 | ${knife4j.version} 71 | 72 | 73 | 74 | com.alibaba 75 | fastjson 76 | ${fastjson.version} 77 | 78 | 79 | cn.hutool 80 | hutool-all 81 | 5.0.6 82 | 83 | 84 | org.springframework.boot 85 | spring-boot-starter-test 86 | test 87 | 88 | 89 | org.junit.vintage 90 | junit-vintage-engine 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | org.springframework.boot 100 | spring-boot-maven-plugin 101 | 102 | com.luban.api.lubanapi.LubanApiApplication 103 | 104 | 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/LubanApiApplication.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | /** 7 | * 鲁班H5 api启动类 8 | * 9 | * @author WeiHongBin 10 | */ 11 | @SpringBootApplication 12 | public class LubanApiApplication { 13 | 14 | public static void main(String[] args) { 15 | SpringApplication.run(LubanApiApplication.class, args); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/config/JsonConfig.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.config; 2 | 3 | import com.fasterxml.jackson.databind.ObjectMapper; 4 | import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; 5 | import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer; 6 | import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer; 7 | import com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer; 8 | import org.springframework.context.annotation.Bean; 9 | import org.springframework.context.annotation.Configuration; 10 | 11 | import java.time.LocalDate; 12 | import java.time.LocalDateTime; 13 | import java.time.LocalTime; 14 | import java.time.format.DateTimeFormatter; 15 | 16 | /** 17 | * JSON 配置,修改默认 时间序列化格式 18 | * 19 | * @author WeiHongBin 20 | */ 21 | @Configuration 22 | public class JsonConfig { 23 | @Bean 24 | public ObjectMapper mapperObject() { 25 | JavaTimeModule module = new JavaTimeModule(); 26 | module.addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))); 27 | module.addSerializer(LocalDate.class, new LocalDateSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd"))); 28 | module.addSerializer(LocalTime.class, new LocalTimeSerializer(DateTimeFormatter.ofPattern("HH:mm:ss"))); 29 | return new ObjectMapper().registerModule(module); 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/config/MybatisPlusConfig.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.config; 2 | 3 | import com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor; 4 | import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; 5 | import com.luban.api.lubanapi.constant.PackageConstant; 6 | import org.mybatis.spring.annotation.MapperScan; 7 | import org.springframework.context.annotation.Bean; 8 | import org.springframework.context.annotation.Configuration; 9 | import org.springframework.transaction.annotation.EnableTransactionManagement; 10 | 11 | 12 | /** 13 | * MyBatis Plus 配置 14 | * 15 | * @author WeiHongBin 16 | */ 17 | @EnableTransactionManagement 18 | @Configuration 19 | @MapperScan(PackageConstant.DAO_PACKAGE) 20 | public class MybatisPlusConfig { 21 | 22 | /** 23 | * 分页插件 24 | */ 25 | @Bean 26 | public PaginationInterceptor paginationInterceptor() { 27 | return new PaginationInterceptor(); 28 | } 29 | 30 | /** 31 | * 乐观锁插件 32 | */ 33 | @Bean 34 | public OptimisticLockerInterceptor optimisticLockerInterceptor() { 35 | return new OptimisticLockerInterceptor(); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/config/SwaggerConfiguration.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.config; 2 | 3 | import com.github.xiaoymin.knife4j.spring.annotations.EnableSwaggerBootstrapUi; 4 | import org.springframework.context.annotation.Bean; 5 | import org.springframework.context.annotation.Configuration; 6 | import springfox.documentation.builders.ApiInfoBuilder; 7 | import springfox.documentation.builders.PathSelectors; 8 | import springfox.documentation.builders.RequestHandlerSelectors; 9 | import springfox.documentation.service.ApiInfo; 10 | import springfox.documentation.service.Contact; 11 | import springfox.documentation.spi.DocumentationType; 12 | import springfox.documentation.spring.web.plugins.Docket; 13 | import springfox.documentation.swagger2.annotations.EnableSwagger2; 14 | 15 | /** 16 | * Swagger 文档 配置 17 | * 18 | * @author WeiHongBin 19 | */ 20 | @Configuration 21 | @EnableSwagger2 22 | @EnableSwaggerBootstrapUi 23 | public class SwaggerConfiguration { 24 | 25 | 26 | @Bean(value = "defaultApi") 27 | public Docket defaultApi() { 28 | return new Docket(DocumentationType.SWAGGER_2) 29 | .apiInfo(apiInfo()) 30 | .groupName("默认接口") 31 | .select() 32 | .apis(RequestHandlerSelectors.basePackage("com.luban.api.lubanapi.controller")) 33 | .paths(PathSelectors.any()) 34 | .build(); 35 | } 36 | 37 | private ApiInfo apiInfo() { 38 | return new ApiInfoBuilder() 39 | .title("鲁班H5 后端 RESTful APIs") 40 | .description("# 鲁班H5 后端 RESTful APIs") 41 | .termsOfServiceUrl("https://www.weihongbin.com") 42 | .contact(new Contact("魏宏斌", "https://www.weihongbin.com", "1602586227@qq.com")) 43 | .version("1.0") 44 | .build(); 45 | } 46 | 47 | } 48 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/constant/PackageConstant.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.constant; 2 | 3 | /** 4 | * 包名常量 5 | * 6 | * @author WeiHongBin 7 | */ 8 | public final class PackageConstant { 9 | 10 | 11 | public static final String BASE_PACKAGE = "com.luban.api.lubanapi"; 12 | 13 | public static final String CONTROLLER_PACKAGE = BASE_PACKAGE + ".controller"; 14 | 15 | public static final String DAO_PACKAGE = BASE_PACKAGE + ".dao"; 16 | 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/controller/UploadController.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.controller; 2 | 3 | import cn.hutool.core.util.IdUtil; 4 | import com.luban.api.lubanapi.exception.UnifiedException; 5 | import com.luban.api.lubanapi.vo.FileVO; 6 | import io.swagger.annotations.Api; 7 | import io.swagger.annotations.ApiOperation; 8 | import lombok.extern.slf4j.Slf4j; 9 | import org.springframework.beans.factory.annotation.Value; 10 | import org.springframework.validation.annotation.Validated; 11 | import org.springframework.web.bind.annotation.PostMapping; 12 | import org.springframework.web.bind.annotation.RequestMapping; 13 | import org.springframework.web.bind.annotation.RestController; 14 | import org.springframework.web.multipart.MultipartFile; 15 | 16 | import javax.validation.constraints.NotNull; 17 | import java.io.File; 18 | import java.io.IOException; 19 | import java.util.ArrayList; 20 | import java.util.List; 21 | 22 | /** 23 | * @author WeiHongBin 24 | */ 25 | @RestController 26 | @RequestMapping("/upload") 27 | @Api(value = "上传文件", tags = {"上传文件"}) 28 | @Slf4j 29 | public class UploadController { 30 | 31 | @Value("${upload-path}") 32 | public String uploadPath; 33 | 34 | @ApiOperation("文件上传") 35 | @PostMapping 36 | public List upload(@Validated @NotNull MultipartFile files) { 37 | String originalFilename = files.getOriginalFilename(); 38 | assert originalFilename != null; 39 | String suffix = originalFilename.substring(originalFilename.lastIndexOf(".") + 1); 40 | String key = IdUtil.fastSimpleUUID() + "." + suffix; 41 | try { 42 | files.transferTo(new File(uploadPath + key)); 43 | } catch (IOException e) { 44 | throw new UnifiedException("文件上传失败"); 45 | } 46 | return new ArrayList() {{ 47 | add(new FileVO() {{ 48 | setUrl(key); 49 | }}); 50 | }}; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/controller/WorkController.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.controller; 2 | 3 | 4 | import com.alibaba.fastjson.JSON; 5 | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; 6 | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; 7 | import com.baomidou.mybatisplus.core.metadata.IPage; 8 | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; 9 | import com.luban.api.lubanapi.convert.WorkConvert; 10 | import com.luban.api.lubanapi.dto.WorkCreateDTO; 11 | import com.luban.api.lubanapi.dto.WorkQueryDTO; 12 | import com.luban.api.lubanapi.dto.WorkUpdateDTO; 13 | import com.luban.api.lubanapi.entity.Work; 14 | import com.luban.api.lubanapi.service.WorkService; 15 | import com.luban.api.lubanapi.vo.WorkVO; 16 | import io.swagger.annotations.Api; 17 | import io.swagger.annotations.ApiOperation; 18 | import lombok.extern.slf4j.Slf4j; 19 | import org.springframework.beans.BeanUtils; 20 | import org.springframework.util.CollectionUtils; 21 | import org.springframework.util.StringUtils; 22 | import org.springframework.web.bind.annotation.*; 23 | 24 | import javax.validation.Valid; 25 | import java.time.LocalDateTime; 26 | import java.util.List; 27 | import java.util.stream.Collectors; 28 | 29 | /** 30 | *

31 | * 前端控制器 32 | *

33 | *

34 | * 由于业务都非常简单,并没有把业务代码下沉到 service 层 35 | * 36 | * @author WeiHongBin 37 | */ 38 | @RestController 39 | @RequestMapping("/works") 40 | @Api(value = "作品管理", tags = {"作品管理"}) 41 | @Slf4j 42 | public class WorkController { 43 | 44 | 45 | private final WorkService workService; 46 | 47 | public WorkController(WorkService workService) { 48 | this.workService = workService; 49 | } 50 | 51 | 52 | @ApiOperation("根据workId查询") 53 | @GetMapping("/{id}") 54 | public WorkVO findWorkById(@PathVariable Long id) { 55 | return WorkConvert.toVO(workService.getById(id)); 56 | } 57 | 58 | @ApiOperation("查询所有work") 59 | @GetMapping 60 | public List listAllWorks(@Valid WorkQueryDTO dto) { 61 | WorkVO vo = new WorkVO(); 62 | vo.setTemplate(Boolean.parseBoolean(dto.getIs_template())); 63 | BeanUtils.copyProperties(dto, vo); 64 | return workService.list(new QueryWrapper<>(WorkConvert.toEntity(vo))).stream().map(WorkConvert::toVO).collect(Collectors.toList()); 65 | } 66 | 67 | 68 | @ApiOperation("分页查询works") 69 | @GetMapping("/pageable") 70 | public IPage listWorks(@Valid WorkQueryDTO dto) { 71 | WorkVO vo = new WorkVO(); 72 | vo.setTemplate(Boolean.parseBoolean(dto.getIs_template())); 73 | BeanUtils.copyProperties(dto, vo); 74 | IPage page = workService.page(new Page<>(dto.getCurrent(), dto.getSize()), new LambdaQueryWrapper<>(WorkConvert.toEntity(vo)).orderByDesc(Work::getCreateTime)); 75 | List voList = page.getRecords().stream().map(WorkConvert::toVO).collect(Collectors.toList()); 76 | return new Page(page.getCurrent(), page.getSize(), page.getTotal()).setPages(page.getPages()).setRecords(voList); 77 | } 78 | 79 | @ApiOperation("创建work") 80 | @PostMapping 81 | public WorkVO createWork(@RequestBody @Valid WorkCreateDTO dto) { 82 | WorkVO vo = new WorkVO(); 83 | BeanUtils.copyProperties(dto, vo); 84 | Work work = WorkConvert.toEntity(vo); 85 | workService.save(work); 86 | return WorkConvert.toVO(work); 87 | } 88 | 89 | @ApiOperation("更新work") 90 | @PutMapping("/{id}") 91 | public WorkVO updateWork(@PathVariable Long id, @RequestBody @Valid WorkUpdateDTO dto) { 92 | Work work = workService.getById(id); 93 | if (!StringUtils.isEmpty(dto.getTitle())) { 94 | work.setTitle(dto.getTitle()); 95 | } 96 | if (!StringUtils.isEmpty(dto.getDescription())) { 97 | work.setDescription(dto.getDescription()); 98 | } 99 | if (!StringUtils.isEmpty(dto.getCoverImageUrl())) { 100 | work.setCoverImageUrl(dto.getCoverImageUrl()); 101 | } 102 | if (!CollectionUtils.isEmpty(dto.getPages())) { 103 | work.setPages(JSON.toJSONString(dto.getPages())); 104 | } 105 | if (dto.isTemplate()) { 106 | work.setTemplate(true); 107 | } 108 | if (dto.isPublish()) { 109 | work.setPublish(true); 110 | } 111 | work.setUpdateTime(LocalDateTime.now()); 112 | workService.saveOrUpdate(work); 113 | return WorkConvert.toVO(work); 114 | } 115 | 116 | 117 | @ApiOperation("删除work") 118 | @DeleteMapping("/{id}") 119 | public void deleteWorkById(@PathVariable Long id) { 120 | workService.removeById(id); 121 | } 122 | 123 | @ApiOperation("设为模板") 124 | @PostMapping("/set-as-template/{id}") 125 | public WorkVO markWorkAsTemplate(@PathVariable Long id) { 126 | Work work = workService.getById(id); 127 | work.setTemplate(true); 128 | work.setUpdateTime(LocalDateTime.now()); 129 | workService.updateById(work); 130 | return WorkConvert.toVO(work); 131 | } 132 | 133 | @ApiOperation("统计作品总数") 134 | @GetMapping("/count") 135 | public int countWork() { 136 | return workService.count(); 137 | } 138 | 139 | @ApiOperation("使用模板") 140 | @PostMapping("/use-template/{id}") 141 | public WorkVO useTemplate(@PathVariable Long id) { 142 | Work work = workService.getById(id); 143 | work.setId(null); 144 | work.setTemplate(false); 145 | work.setPublish(false); 146 | workService.save(work); 147 | return WorkConvert.toVO(work); 148 | } 149 | } 150 | 151 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/controller/WorkFormsController.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.controller; 2 | 3 | 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | import org.springframework.web.bind.annotation.RestController; 6 | 7 | /** 8 | *

9 | * 前端控制器 10 | *

11 | * 12 | * @author WeiHongBin 13 | * @since 2019-11-26 14 | */ 15 | @RestController 16 | @RequestMapping("/work-forms") 17 | public class WorkFormsController { 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/convert/WorkConvert.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.convert; 2 | 3 | import com.alibaba.fastjson.JSON; 4 | import com.luban.api.lubanapi.entity.Work; 5 | import com.luban.api.lubanapi.vo.WorkVO; 6 | import org.springframework.beans.BeanUtils; 7 | import org.springframework.util.CollectionUtils; 8 | import org.springframework.util.StringUtils; 9 | 10 | /** 11 | * Work 转换器 12 | * 13 | * @author WeiHongBin 14 | */ 15 | public class WorkConvert { 16 | 17 | 18 | public static WorkVO toVO(Work entity) { 19 | WorkVO vo = new WorkVO(); 20 | BeanUtils.copyProperties(entity, vo); 21 | if (!StringUtils.isEmpty(entity.getPages())) { 22 | vo.setPages(JSON.parseArray(entity.getPages())); 23 | } 24 | return vo; 25 | } 26 | 27 | public static Work toEntity(WorkVO vo) { 28 | Work work = new Work(); 29 | BeanUtils.copyProperties(vo, work); 30 | if (!CollectionUtils.isEmpty(vo.getPages())) { 31 | work.setPages(JSON.toJSONString(vo.getPages())); 32 | } 33 | return work; 34 | } 35 | 36 | 37 | } 38 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dao/WorkDao.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import com.luban.api.lubanapi.entity.Work; 5 | 6 | /** 7 | *

8 | * Mapper 接口 9 | *

10 | * 11 | * @author WeiHongBin 12 | * @since 2019-11-26 13 | */ 14 | public interface WorkDao extends BaseMapper { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dao/WorkDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dao/WorkFormsDao.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.dao; 2 | 3 | import com.baomidou.mybatisplus.core.mapper.BaseMapper; 4 | import com.luban.api.lubanapi.entity.WorkForms; 5 | 6 | /** 7 | *

8 | * Mapper 接口 9 | *

10 | * 11 | * @author WeiHongBin 12 | * @since 2019-11-26 13 | */ 14 | public interface WorkFormsDao extends BaseMapper { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dao/WorkFormsDao.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dto/PageDtoBase.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.dto; 2 | 3 | import io.swagger.annotations.ApiModelProperty; 4 | import lombok.Data; 5 | 6 | /** 7 | * 分页基类 8 | * 9 | * @author admin 10 | */ 11 | @Data 12 | public class PageDtoBase { 13 | /** 14 | * 每页行数 15 | */ 16 | @ApiModelProperty(value = "每页行数") 17 | protected Integer size = 10; 18 | 19 | /** 20 | * 页码 21 | */ 22 | @ApiModelProperty(value = "页码") 23 | protected Integer current = 1; 24 | 25 | 26 | public void setSize(Integer size) { 27 | if (size != null) { 28 | this.size = size; 29 | } 30 | } 31 | 32 | public void setCurrent(Integer current) { 33 | if (current != null) { 34 | this.current = current; 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dto/WorkCreateDTO.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.dto; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import lombok.Data; 5 | import lombok.EqualsAndHashCode; 6 | import lombok.experimental.Accessors; 7 | 8 | import java.time.LocalDateTime; 9 | import java.util.List; 10 | 11 | /** 12 | * @author WeiHongBin 13 | */ 14 | @Data 15 | @EqualsAndHashCode 16 | @Accessors(chain = true) 17 | @ApiModel(value = "WorkCreateDTO") 18 | public class WorkCreateDTO { 19 | 20 | private String title; 21 | 22 | private String description; 23 | 24 | private String coverImageUrl; 25 | 26 | private List pages; 27 | 28 | private LocalDateTime createTime = LocalDateTime.now(); 29 | 30 | private LocalDateTime updateTime = LocalDateTime.now(); 31 | 32 | private boolean publish = false; 33 | 34 | private boolean template = false; 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dto/WorkQueryDTO.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.dto; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import lombok.Data; 5 | import lombok.EqualsAndHashCode; 6 | import lombok.experimental.Accessors; 7 | 8 | import java.time.LocalDateTime; 9 | import java.util.List; 10 | 11 | /** 12 | * @author WeiHongBin 13 | */ 14 | @Data 15 | @EqualsAndHashCode 16 | @Accessors(chain = true) 17 | @ApiModel(value = "WorkQueryDTO") 18 | public class WorkQueryDTO extends PageDtoBase { 19 | 20 | private String title; 21 | 22 | private String description; 23 | 24 | private String coverImageUrl; 25 | 26 | private List pages; 27 | 28 | private LocalDateTime createTime; 29 | 30 | private LocalDateTime updateTime; 31 | 32 | private String is_publish; 33 | 34 | private String is_template; 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/dto/WorkUpdateDTO.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.dto; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import lombok.Data; 5 | import lombok.EqualsAndHashCode; 6 | import lombok.experimental.Accessors; 7 | 8 | import java.time.LocalDateTime; 9 | import java.util.List; 10 | 11 | /** 12 | * @author WeiHongBin 13 | */ 14 | @Data 15 | @EqualsAndHashCode 16 | @Accessors(chain = true) 17 | @ApiModel(value = "WorkQueryDTO") 18 | public class WorkUpdateDTO { 19 | 20 | private String title; 21 | 22 | private String description; 23 | 24 | private String coverImageUrl; 25 | 26 | private List pages; 27 | 28 | private LocalDateTime updateTime = LocalDateTime.now(); 29 | 30 | private boolean publish; 31 | 32 | private boolean template; 33 | } 34 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/entity/Work.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.entity; 2 | 3 | import com.baomidou.mybatisplus.annotation.IdType; 4 | import com.baomidou.mybatisplus.annotation.TableId; 5 | import io.swagger.annotations.ApiModel; 6 | import io.swagger.annotations.ApiModelProperty; 7 | import lombok.Data; 8 | import lombok.EqualsAndHashCode; 9 | import lombok.experimental.Accessors; 10 | 11 | import java.io.Serializable; 12 | import java.time.LocalDateTime; 13 | 14 | /** 15 | *

16 | * 17 | *

18 | * 19 | * @author WeiHongBin 20 | * @since 2019-11-26 21 | */ 22 | @Data 23 | @EqualsAndHashCode 24 | @Accessors(chain = true) 25 | @ApiModel(value = "Work对象") 26 | public class Work implements Serializable { 27 | 28 | private static final long serialVersionUID = 1L; 29 | 30 | @TableId(value = "id", type = IdType.AUTO) 31 | private Long id; 32 | 33 | @ApiModelProperty(value = "标题") 34 | private String title; 35 | 36 | @ApiModelProperty(value = "描述") 37 | private String description; 38 | 39 | private String coverImageUrl; 40 | 41 | private String pages; 42 | 43 | private Boolean publish; 44 | 45 | private Boolean template; 46 | 47 | @ApiModelProperty(value = "创建时间") 48 | private LocalDateTime createTime; 49 | 50 | @ApiModelProperty(value = "更新时间") 51 | private LocalDateTime updateTime; 52 | 53 | 54 | } 55 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/entity/WorkForms.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.entity; 2 | 3 | import com.baomidou.mybatisplus.annotation.IdType; 4 | import com.baomidou.mybatisplus.annotation.TableId; 5 | import io.swagger.annotations.ApiModel; 6 | import lombok.Data; 7 | import lombok.EqualsAndHashCode; 8 | import lombok.experimental.Accessors; 9 | 10 | import java.io.Serializable; 11 | 12 | /** 13 | *

14 | * 15 | *

16 | * 17 | * @author WeiHongBin 18 | * @since 2019-11-26 19 | */ 20 | @Data 21 | @EqualsAndHashCode 22 | @Accessors(chain = true) 23 | @ApiModel(value = "WorkForms对象") 24 | public class WorkForms implements Serializable { 25 | 26 | private static final long serialVersionUID = 1L; 27 | 28 | @TableId(value = "id", type = IdType.AUTO) 29 | private Long id; 30 | 31 | private String form; 32 | 33 | private Long workId; 34 | 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/exception/ExceptionHandle.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.exception; 2 | 3 | 4 | import com.luban.api.lubanapi.util.JSON; 5 | import com.luban.api.lubanapi.vo.Result; 6 | import lombok.extern.slf4j.Slf4j; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | import org.springframework.http.HttpStatus; 9 | import org.springframework.http.ResponseEntity; 10 | import org.springframework.validation.BindException; 11 | import org.springframework.validation.FieldError; 12 | import org.springframework.validation.ObjectError; 13 | import org.springframework.web.bind.MethodArgumentNotValidException; 14 | import org.springframework.web.bind.annotation.ExceptionHandler; 15 | import org.springframework.web.bind.annotation.ResponseStatus; 16 | import org.springframework.web.bind.annotation.RestControllerAdvice; 17 | import org.springframework.web.servlet.NoHandlerFoundException; 18 | 19 | import java.util.HashMap; 20 | import java.util.List; 21 | import java.util.Map; 22 | 23 | /** 24 | * 异常处理 25 | * 26 | * @author WeiHongBin 27 | */ 28 | @Slf4j 29 | @RestControllerAdvice 30 | public class ExceptionHandle { 31 | 32 | 33 | @Autowired 34 | private JSON json; 35 | 36 | /** 37 | * 统一异常处理器 38 | * 39 | * @param e UnifiedException 40 | * @return 响应实体 41 | */ 42 | @ExceptionHandler(value = UnifiedException.class) 43 | public ResponseEntity> unifiedExceptionHandle(UnifiedException e) { 44 | Result result = new Result<>(e.getMessage(), e.getStatus()); 45 | if (e.getStatus() == HttpStatus.INTERNAL_SERVER_ERROR) { 46 | log.error(e.getMessage(), e); 47 | } else { 48 | log.warn(e.getMessage(), e); 49 | } 50 | return new ResponseEntity<>(result, HttpStatus.OK); 51 | } 52 | 53 | 54 | /** 55 | * 处理参数校验异常 56 | * 57 | * @param e BindException 58 | * @return 响应实体 59 | */ 60 | @ExceptionHandler(value = MethodArgumentNotValidException.class) 61 | @ResponseStatus(HttpStatus.OK) 62 | public Result methodArgumentNotValidExceptionHandle(MethodArgumentNotValidException e) { 63 | // 获取全部错误对象 64 | List allErrors = e.getBindingResult().getAllErrors(); 65 | String errorMsg = objectErrorHandle(allErrors); 66 | log.warn("MethodArgumentNotValidException:", e); 67 | return new Result<>().error(HttpStatus.BAD_REQUEST, errorMsg); 68 | } 69 | 70 | private String objectErrorHandle(List allErrors) { 71 | Map map = new HashMap<>(allErrors.size()); 72 | // 把错误对象转成 k,v 存入Map 73 | allErrors.forEach(error -> { 74 | String key = error.getObjectName(); 75 | if (error instanceof FieldError) { 76 | FieldError fieldError = (FieldError) error; 77 | key = fieldError.getField(); 78 | } 79 | map.put(key, error.getDefaultMessage()); 80 | }); 81 | return json.toJSON(map); 82 | } 83 | 84 | /** 85 | * 处理参数校验异常 86 | * 87 | * @param e BindException 88 | * @return 响应实体 89 | */ 90 | @ExceptionHandler(value = BindException.class) 91 | @ResponseStatus(HttpStatus.OK) 92 | public Result bindExceptionHandle(BindException e) { 93 | // 获取全部错误对象 94 | List allErrors = e.getAllErrors(); 95 | String errorMsg = objectErrorHandle(allErrors); 96 | log.warn("BindException:", e); 97 | return new Result<>().error(HttpStatus.BAD_REQUEST, errorMsg); 98 | } 99 | 100 | @ExceptionHandler(value = NoHandlerFoundException.class) 101 | @ResponseStatus(HttpStatus.OK) 102 | public Result noHandlerFoundExceptionHandle(NoHandlerFoundException e) { 103 | log.warn("NoHandlerFoundException 异常:", e); 104 | return new Result<>().error(HttpStatus.NOT_FOUND, e.getMessage()); 105 | } 106 | 107 | @ExceptionHandler(value = Exception.class) 108 | @ResponseStatus(HttpStatus.OK) 109 | public Result exceptionHandle(Exception e) { 110 | log.error("Exception 异常:", e); 111 | return new Result<>().error(HttpStatus.INTERNAL_SERVER_ERROR, "服务繁忙,请稍后再试!"); 112 | } 113 | } 114 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/exception/UnifiedException.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.exception; 2 | 3 | import com.fasterxml.jackson.core.JsonProcessingException; 4 | import com.fasterxml.jackson.databind.ObjectMapper; 5 | import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; 6 | import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer; 7 | import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer; 8 | import com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer; 9 | import lombok.Data; 10 | import lombok.EqualsAndHashCode; 11 | import lombok.extern.slf4j.Slf4j; 12 | import org.springframework.http.HttpStatus; 13 | 14 | import java.time.LocalDate; 15 | import java.time.LocalDateTime; 16 | import java.time.LocalTime; 17 | import java.time.format.DateTimeFormatter; 18 | import java.util.Map; 19 | 20 | /** 21 | * 统一异常 22 | * 23 | * @author WeiHongBin 24 | */ 25 | @Slf4j 26 | @Data 27 | @EqualsAndHashCode 28 | public class UnifiedException extends RuntimeException { 29 | private HttpStatus status; 30 | private String message; 31 | 32 | 33 | /** 34 | * Unified exception 35 | * 统一异常 36 | */ 37 | public UnifiedException() { 38 | super("服务器忙,请稍候重试"); 39 | this.status = HttpStatus.INTERNAL_SERVER_ERROR; 40 | this.message = "服务器忙,请稍候重试"; 41 | } 42 | 43 | /** 44 | * 统一异常 45 | * 46 | * @param status 异常状态码 47 | * @param message 异常消息 48 | */ 49 | public UnifiedException(HttpStatus status, String message) { 50 | super(message); 51 | this.status = status; 52 | this.message = message; 53 | } 54 | 55 | /** 56 | * 统一异常 57 | * 58 | * @param message 异常消息 59 | */ 60 | public UnifiedException(String message) { 61 | super(message); 62 | this.status = HttpStatus.INTERNAL_SERVER_ERROR; 63 | this.message = message; 64 | } 65 | 66 | public UnifiedException(String message, Throwable e) { 67 | super(message, e); 68 | this.status = HttpStatus.INTERNAL_SERVER_ERROR; 69 | this.message = message; 70 | } 71 | 72 | public UnifiedException unauthorized(String message) { 73 | return new UnifiedException(HttpStatus.UNAUTHORIZED, message); 74 | } 75 | 76 | public UnifiedException verifyError(Map map) { 77 | JavaTimeModule module = new JavaTimeModule(); 78 | module.addSerializer(LocalDateTime.class, new LocalDateTimeSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))); 79 | module.addSerializer(LocalDate.class, new LocalDateSerializer(DateTimeFormatter.ofPattern("yyyy-MM-dd"))); 80 | module.addSerializer(LocalTime.class, new LocalTimeSerializer(DateTimeFormatter.ofPattern("HH:mm:ss"))); 81 | ObjectMapper mapper = new ObjectMapper().registerModule(module); 82 | String asString = ""; 83 | try { 84 | asString = mapper.writeValueAsString(map); 85 | } catch (JsonProcessingException e) { 86 | log.error("JSON 转换异常", e); 87 | } 88 | return new UnifiedException(HttpStatus.BAD_REQUEST, asString); 89 | } 90 | } 91 | 92 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/log/P6SpyLogger.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.log; 2 | 3 | import com.baomidou.mybatisplus.core.toolkit.StringUtils; 4 | import com.p6spy.engine.spy.appender.MessageFormattingStrategy; 5 | import lombok.extern.slf4j.Slf4j; 6 | import org.springframework.stereotype.Component; 7 | 8 | /** 9 | * P6Spy 日志自定义处理 10 | * 11 | * @author WeiHongBin 12 | */ 13 | @Slf4j 14 | @Component 15 | public class P6SpyLogger implements MessageFormattingStrategy { 16 | @Override 17 | public String formatMessage(int connectionId, String now, long elapsed, String category, String prepared, String sql, String url) { 18 | return StringUtils.isNotEmpty(sql) ? " Consume Time:" + elapsed + " ms " + now + 19 | "\n Execute SQL:" + sql.replaceAll("[\\s]+", " ") + "\n" : null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/log/StdoutLogger.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.log; 2 | 3 | import lombok.extern.slf4j.Slf4j; 4 | import org.springframework.stereotype.Component; 5 | 6 | /** 7 | * 修改SQL执行输出到 日志,便于分析 8 | * 9 | * @author WeiHongBin 10 | */ 11 | @Slf4j 12 | @Component 13 | public class StdoutLogger extends com.p6spy.engine.spy.appender.StdoutLogger { 14 | @Override 15 | public void logText(String text) { 16 | if (log.isDebugEnabled()) { 17 | log.debug(text); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/service/WorkFormsService.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.service; 2 | 3 | import com.baomidou.mybatisplus.extension.service.IService; 4 | import com.luban.api.lubanapi.entity.WorkForms; 5 | 6 | /** 7 | *

8 | * 服务类 9 | *

10 | * 11 | * @author WeiHongBin 12 | * @since 2019-11-26 13 | */ 14 | public interface WorkFormsService extends IService { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/service/WorkService.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.service; 2 | 3 | import com.baomidou.mybatisplus.extension.service.IService; 4 | import com.luban.api.lubanapi.entity.Work; 5 | 6 | /** 7 | *

8 | * 服务类 9 | *

10 | * 11 | * @author WeiHongBin 12 | * @since 2019-11-26 13 | */ 14 | public interface WorkService extends IService { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/service/impl/WorkFormsServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.service.impl; 2 | 3 | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; 4 | import com.luban.api.lubanapi.dao.WorkFormsDao; 5 | import com.luban.api.lubanapi.entity.WorkForms; 6 | import com.luban.api.lubanapi.service.WorkFormsService; 7 | import org.springframework.stereotype.Service; 8 | 9 | /** 10 | *

11 | * 服务实现类 12 | *

13 | * 14 | * @author WeiHongBin 15 | * @since 2019-11-26 16 | */ 17 | @Service 18 | public class WorkFormsServiceImpl extends ServiceImpl implements WorkFormsService { 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/service/impl/WorkServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.service.impl; 2 | 3 | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; 4 | import com.luban.api.lubanapi.dao.WorkDao; 5 | import com.luban.api.lubanapi.entity.Work; 6 | import com.luban.api.lubanapi.service.WorkService; 7 | import org.springframework.stereotype.Service; 8 | 9 | /** 10 | *

11 | * 服务实现类 12 | *

13 | * 14 | * @author WeiHongBin 15 | * @since 2019-11-26 16 | */ 17 | @Service 18 | public class WorkServiceImpl extends ServiceImpl implements WorkService { 19 | 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/util/JSON.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.util; 2 | 3 | 4 | import com.fasterxml.jackson.core.JsonProcessingException; 5 | import com.fasterxml.jackson.core.type.TypeReference; 6 | import com.fasterxml.jackson.databind.ObjectMapper; 7 | import lombok.extern.slf4j.Slf4j; 8 | import org.springframework.beans.factory.annotation.Autowired; 9 | import org.springframework.stereotype.Component; 10 | 11 | import java.io.IOException; 12 | import java.util.List; 13 | import java.util.Map; 14 | 15 | /** 16 | * JSON 转换工具 17 | * 18 | * @author WeiHongBin 19 | */ 20 | @Slf4j 21 | @Component 22 | public class JSON { 23 | 24 | @Autowired 25 | private ObjectMapper objectMapper; 26 | 27 | public String toJSON(Object jsonObj) { 28 | try { 29 | return objectMapper.writeValueAsString(jsonObj); 30 | } catch (JsonProcessingException e) { 31 | log.error("JSON 转换异常 转换异常的数据类型: " + jsonObj.getClass().getName(), e); 32 | } 33 | return jsonObj.toString(); 34 | } 35 | 36 | 37 | public Map toMap(String json) { 38 | try { 39 | return objectMapper.readValue(json, Map.class); 40 | } catch (IOException e) { 41 | log.error("JSON 转换异常", e); 42 | } 43 | return null; 44 | } 45 | 46 | public List> toListMapStr(String json) { 47 | try { 48 | return objectMapper.readValue(json, new TypeReference>>() { 49 | }); 50 | } catch (IOException e) { 51 | log.error("JSON 转换异常", e); 52 | } 53 | return null; 54 | } 55 | 56 | 57 | public List toListString(String json) { 58 | try { 59 | return objectMapper.readValue(json, new TypeReference>() { 60 | }); 61 | } catch (IOException e) { 62 | log.error("JSON 转换异常", e); 63 | } 64 | return null; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/vo/FileVO.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import lombok.Data; 5 | import lombok.EqualsAndHashCode; 6 | import lombok.experimental.Accessors; 7 | 8 | /** 9 | * @author WeiHongBin 10 | */ 11 | @Data 12 | @EqualsAndHashCode 13 | @Accessors(chain = true) 14 | @ApiModel(value = "文件视图对象") 15 | public class FileVO { 16 | private String url; 17 | } 18 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/vo/Result.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import io.swagger.annotations.ApiModelProperty; 5 | import lombok.Data; 6 | import org.springframework.http.HttpStatus; 7 | import org.springframework.stereotype.Component; 8 | 9 | /** 10 | * 统一返回 11 | * 12 | * @author WeiHongBin 13 | */ 14 | @ApiModel(description = "返回响应数据") 15 | @Component 16 | @Data 17 | public class Result { 18 | @ApiModelProperty(value = "返回状态码") 19 | private Integer code; 20 | @ApiModelProperty(value = "返回消息") 21 | private String msg; 22 | @ApiModelProperty(value = "返回当前状态") 23 | private HttpStatus status; 24 | @ApiModelProperty(value = "返回对象") 25 | private T data; 26 | 27 | public Result() { 28 | this.msg = "成功"; 29 | setStatus(HttpStatus.OK); 30 | } 31 | 32 | public void setStatus(HttpStatus status) { 33 | this.status = status; 34 | setCode(status.value()); 35 | } 36 | 37 | private void setCode(Integer code) { 38 | this.code = code; 39 | } 40 | 41 | public Result(T data) { 42 | setStatus(HttpStatus.OK); 43 | this.msg = "成功"; 44 | this.data = data; 45 | } 46 | 47 | public Result(String msg, HttpStatus status, T data) { 48 | this.msg = msg; 49 | setStatus(status); 50 | this.data = data; 51 | } 52 | 53 | public Result(String msg, HttpStatus status) { 54 | this.msg = msg; 55 | setStatus(status); 56 | } 57 | 58 | public Result ok(T data) { 59 | setStatus(HttpStatus.OK); 60 | this.msg = "成功"; 61 | this.data = data; 62 | return this; 63 | } 64 | 65 | public Result error(HttpStatus status, String msg) { 66 | setStatus(status); 67 | this.msg = msg; 68 | this.data = null; 69 | return this; 70 | } 71 | 72 | public boolean isOK() { 73 | return this.getStatus() == HttpStatus.OK; 74 | } 75 | 76 | @Override 77 | public String toString() { 78 | return "Result{" + 79 | "code=" + code + 80 | ", msg='" + msg + '\'' + 81 | ", status=" + status + 82 | ", data=" + data + 83 | '}'; 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /src/main/java/com/luban/api/lubanapi/vo/WorkVO.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi.vo; 2 | 3 | import io.swagger.annotations.ApiModel; 4 | import lombok.Data; 5 | import lombok.EqualsAndHashCode; 6 | import lombok.experimental.Accessors; 7 | 8 | import java.time.LocalDateTime; 9 | import java.util.List; 10 | 11 | /** 12 | * @author WeiHongBin 13 | */ 14 | @Data 15 | @EqualsAndHashCode 16 | @Accessors(chain = true) 17 | @ApiModel(value = "Work视图对象") 18 | public class WorkVO { 19 | 20 | private Long id; 21 | 22 | private String title; 23 | 24 | private String description; 25 | 26 | private String coverImageUrl; 27 | 28 | private List pages; 29 | 30 | private LocalDateTime createTime; 31 | 32 | private LocalDateTime updateTime; 33 | 34 | private boolean publish; 35 | 36 | private boolean template; 37 | } 38 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/additional-spring-configuration-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "properties": [ 3 | { 4 | "name": "upload-path", 5 | "type": "java.lang.String", 6 | "description": "文件上传路径." 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/application-dev.yml: -------------------------------------------------------------------------------- 1 | logging: 2 | level: 3 | "com.luban.api.lubanapi": debug 4 | spring: 5 | datasource: 6 | driver-class-name: com.p6spy.engine.spy.P6SpyDriver 7 | url: jdbc:p6spy:mysql://${H5_DB_URL:127.0.0.1:3306}/h5?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true 8 | username: ${H5_DB_USERNAME:root} 9 | password: ${H5_DB_PASSWORD:root} 10 | devtools: 11 | add-properties: true 12 | upload-path: ${UPLOAD_PATH:D:/h5_file/} -------------------------------------------------------------------------------- /src/main/resources/application-prod.yml: -------------------------------------------------------------------------------- 1 | spring: 2 | datasource: 3 | driver-class-name: com.mysql.cj.jdbc.Driver 4 | url: jdbc:mysql://${H5_DB_URL:127.0.0.1:3306}/h5?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true 5 | username: ${H5_DB_USERNAME:root} 6 | password: ${H5_DB_PASSWORD:root} 7 | devtools: 8 | add-properties: false 9 | upload-path: ${UPLOAD_PATH:"D:\h5_file"} -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 18811 3 | spring: 4 | resources: 5 | static-locations: 6 | - classpath:/META-INF/resources/ 7 | - classpath:/resources/ 8 | - classpath:/static/ 9 | - classpath:/public/ 10 | - file:${upload-path} 11 | profiles: 12 | active: dev 13 | servlet: 14 | multipart: 15 | max-file-size: 1GB 16 | max-request-size: 1GB 17 | banner: 18 | location: https://img.rrztech.com/banner.txt 19 | datasource: 20 | hikari: 21 | connection-test-query: SELECT 1 22 | maximum-pool-size: 30 23 | minimum-idle: 20 24 | connection-timeout: 10000 25 | idle-timeout: 300000 26 | max-lifetime: 900000 27 | mybatis-plus: 28 | global-config: 29 | banner: false 30 | db-config: 31 | id-type: auto 32 | logic-delete-value: 1 33 | logic-not-delete-value: 0 34 | type-aliases-package: com.luban.api.lubanapi.entity 35 | configuration: 36 | map-underscore-to-camel-case: true 37 | cache-enabled: false -------------------------------------------------------------------------------- /src/main/resources/spy.properties: -------------------------------------------------------------------------------- 1 | module.log=com.p6spy.engine.logging.P6LogFactory,com.p6spy.engine.outage.P6OutageFactory 2 | # \u81EA\u5B9A\u4E49\u65E5\u5FD7\u6253\u5370 3 | #logMessageFormat=com.baomidou.mybatisplus.extension.p6spy.P6SpyLogger 4 | logMessageFormat=com.luban.api.lubanapi.log.P6SpyLogger 5 | #\u65E5\u5FD7\u8F93\u51FA\u5230\u63A7\u5236\u53F0 6 | #appender=com.baomidou.mybatisplus.extension.p6spy.StdoutLogger 7 | appender=com.luban.api.lubanapi.log.StdoutLogger 8 | # \u4F7F\u7528\u65E5\u5FD7\u7CFB\u7EDF\u8BB0\u5F55 sql 9 | #appender=com.p6spy.engine.spy.appender.Slf4JLogger 10 | # \u8BBE\u7F6E p6spy driver \u4EE3\u7406 11 | deregisterdrivers=true 12 | # \u53D6\u6D88JDBC URL\u524D\u7F00 13 | useprefix=true 14 | # \u914D\u7F6E\u8BB0\u5F55 Log \u4F8B\u5916,\u53EF\u53BB\u6389\u7684\u7ED3\u679C\u96C6\u6709error,info,batch,debug,statement,commit,rollback,result,resultset. 15 | excludecategories=info,debug,result,batch,resultset 16 | # \u65E5\u671F\u683C\u5F0F 17 | dateformat=yyyy-MM-dd HH:mm:ss 18 | # \u5B9E\u9645\u9A71\u52A8\u53EF\u591A\u4E2A 19 | #driverlist=org.h2.Driver 20 | # \u662F\u5426\u5F00\u542F\u6162SQL\u8BB0\u5F55 21 | outagedetection=true 22 | # \u6162SQL\u8BB0\u5F55\u6807\u51C6 2 \u79D2 23 | outagedetectioninterval=2 24 | -------------------------------------------------------------------------------- /src/test/java/com/luban/api/lubanapi/GenerateCode.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi; 2 | 3 | import com.baomidou.mybatisplus.annotation.DbType; 4 | import com.baomidou.mybatisplus.annotation.IdType; 5 | import com.baomidou.mybatisplus.generator.AutoGenerator; 6 | import com.baomidou.mybatisplus.generator.config.DataSourceConfig; 7 | import com.baomidou.mybatisplus.generator.config.GlobalConfig; 8 | import com.baomidou.mybatisplus.generator.config.PackageConfig; 9 | import com.baomidou.mybatisplus.generator.config.StrategyConfig; 10 | import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy; 11 | import org.junit.jupiter.api.Test; 12 | 13 | public class GenerateCode { 14 | 15 | private final String url = "jdbc:mysql://dburl:13306/h5?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true"; 16 | private final String username = "root"; 17 | private final String password = "root"; 18 | private final String driverName = "com.mysql.cj.jdbc.Driver"; 19 | private final String author = "WeiHongBin"; 20 | private final String outputDir = "C:\\Users\\admin\\Desktop\\luban-api\\src\\main\\java"; 21 | private final String packageName = "com.luban.api.lubanapi"; 22 | 23 | @Test 24 | public void getCode() { 25 | generateCode( 26 | "work", "work_forms" 27 | ); 28 | } 29 | 30 | private void generateCode(String... table) { 31 | 32 | // 数据库配置 33 | DataSourceConfig dataSourceConfig = new DataSourceConfig() {{ 34 | setDbType(DbType.MYSQL); 35 | setUrl(url); 36 | setUsername(username); 37 | setPassword(password); 38 | setDriverName(driverName); 39 | }}; 40 | // 策略配置项 41 | StrategyConfig strategyConfig = new StrategyConfig() {{ 42 | setRestControllerStyle(true); 43 | setCapitalMode(true); 44 | setEntityLombokModel(true); 45 | setControllerMappingHyphenStyle(true); 46 | setNaming(NamingStrategy.underline_to_camel); 47 | setInclude(table); 48 | 49 | }}; 50 | // 全局配置 51 | GlobalConfig config = new GlobalConfig() {{ 52 | // setFileOverride(true); 53 | setActiveRecord(false); 54 | setSwagger2(true); 55 | setAuthor(author); 56 | setIdType(IdType.AUTO); 57 | setEnableCache(false); 58 | setBaseResultMap(true); 59 | setXmlName("%sDao"); 60 | setMapperName("%sDao"); 61 | setOutputDir(outputDir); 62 | setServiceName("%sService"); 63 | }}; 64 | //包信息 65 | PackageConfig packageInfo = new PackageConfig() {{ 66 | setParent(packageName); 67 | setEntity("entity"); 68 | setMapper("dao"); 69 | setXml("dao"); 70 | setService("service"); 71 | setServiceImpl("service.impl"); 72 | setController("controller"); 73 | }}; 74 | new AutoGenerator() 75 | .setGlobalConfig(config) 76 | .setDataSource(dataSourceConfig) 77 | .setStrategy(strategyConfig) 78 | .setPackageInfo(packageInfo) 79 | .execute(); 80 | } 81 | 82 | } 83 | -------------------------------------------------------------------------------- /src/test/java/com/luban/api/lubanapi/LubanApiApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.luban.api.lubanapi; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class LubanApiApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | --------------------------------------------------------------------------------