Skip to content

Commit

Permalink
version1
Browse files Browse the repository at this point in the history
  • Loading branch information
zwdbox committed Mar 15, 2020
1 parent 9f6c0d4 commit b0027de
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions test1/tt2.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
@startuml

start
:ClickServlet.handleRequest();
:new page;
if (Page.onSecurityCheck) then (true)
:Page.onInit();
if (isForward?) then (no)
:Process controls;
if (continue processing?) then (no)
stop
endif

if (isPost?) then (yes)
:Page.onPost();
else (no)
:Page.onGet();
endif
:Page.onRender();
endif
else (false)
endif

if (do redirect?) then (yes)
:redirect process;
else
if (do forward?) then (yes)
:Forward request;
else (no)
:Render page template;
endif
endif

stop

@enduml
File renamed without changes.
Binary file not shown.
Binary file not shown.

0 comments on commit b0027de

Please sign in to comment.