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
Spring Boot Demo System components and their relationships.
Handles user login requests and authentication.
Related Classes/Methods:
com.springboot.demo.controller.LoginController
Manages system user-related operations.
Related Classes/Methods:
com.springboot.demo.controller.SysUserController
Provides business logic for system user operations.
Related Classes/Methods:
com.springboot.demo.service.SysUserService
Data access layer for system user information.
Related Classes/Methods:
com.springboot.demo.mapper.SysUserMapper
Configures Apache Shiro for security.
Related Classes/Methods:
com.springboot.demo.config.ShiroConfig
Custom Shiro realm for authentication and authorization.
Related Classes/Methods:
com.springboot.demo.shiro.ShiroRealm