Skip to content

Latest commit

 

History

History
78 lines (42 loc) · 1.89 KB

File metadata and controls

78 lines (42 loc) · 1.89 KB
graph LR
    LoginController["LoginController"]
    SysUserController["SysUserController"]
    SysUserService["SysUserService"]
    SysUserMapper["SysUserMapper"]
    ShiroConfig["ShiroConfig"]
    ShiroRealm["ShiroRealm"]
    LoginController -- "uses" --> SysUserService
    SysUserController -- "uses" --> SysUserService
    SysUserService -- "uses" --> SysUserMapper
    ShiroConfig -- "configures" --> ShiroRealm
    LoginController -- "uses" --> ShiroConfig
Loading

CodeBoardingDemoContact

Details

Spring Boot Demo System components and their relationships.

LoginController

Handles user login requests and authentication.

Related Classes/Methods:

  • com.springboot.demo.controller.LoginController

SysUserController

Manages system user-related operations.

Related Classes/Methods:

  • com.springboot.demo.controller.SysUserController

SysUserService

Provides business logic for system user operations.

Related Classes/Methods:

  • com.springboot.demo.service.SysUserService

SysUserMapper

Data access layer for system user information.

Related Classes/Methods:

  • com.springboot.demo.mapper.SysUserMapper

ShiroConfig

Configures Apache Shiro for security.

Related Classes/Methods:

  • com.springboot.demo.config.ShiroConfig

ShiroRealm

Custom Shiro realm for authentication and authorization.

Related Classes/Methods:

  • com.springboot.demo.shiro.ShiroRealm