help.ftl 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>AdminLTE 2 | Dashboard</title>
  5. <#import "/common/common.macro.ftl" as netCommon>
  6. <@netCommon.commonStyle />
  7. </head>
  8. <body class="hold-transition skin-blue sidebar-mini">
  9. <div class="wrapper">
  10. <!-- header -->
  11. <@netCommon.commonHeader />
  12. <!-- left -->
  13. <@netCommon.commonLeft />
  14. <!-- Content Wrapper. Contains page content -->
  15. <div class="content-wrapper">
  16. <!-- Content Header (Page header) -->
  17. <section class="content-header">
  18. <h1>使用教程<small>调度管理平台</small></h1>
  19. <ol class="breadcrumb">
  20. <li><a><i class="fa fa-dashboard"></i>调度中心</a></li>
  21. <li class="active">使用教程</li>
  22. </ol>
  23. </section>
  24. <!-- Main content -->
  25. <section class="content">
  26. <div class="callout callout-info">
  27. <h4>简介:xxl-job</h4>
  28. <p>调度管理平台:基于quartz封装实现的的集群任务调度管理平台.</p>
  29. <p></p>
  30. </div>
  31. <div class="callout callout-info">
  32. <h4>特点:</h4>
  33. <p>1、简单:支持通过Web页面对任务进行CRUD操作,操作简单,一分钟上手.</p>
  34. <p>2、动态:支持动态修改任务状态,动态暂停/恢复任务,即时生效.</p>
  35. <p>3、集群:任务信息持久化到mysql中,支持Job服务器集群(高可用),一个任务只会在其中一台服务器上执行.</p>
  36. </div>
  37. </section>
  38. <!-- /.content -->
  39. </div>
  40. <!-- /.content-wrapper -->
  41. <!-- footer -->
  42. <@netCommon.commonFooter />
  43. <!-- control -->
  44. <@netCommon.commonControl />
  45. </div>
  46. <@netCommon.commonScript />
  47. </body>
  48. </html>