ExampleController.kt 870 B

1234567891011121314151617181920212223242526272829303132
  1. package com.gxzc.zen.controller
  2. import com.gxzc.zen.api.bus.service.IMgrFondsService
  3. import com.gxzc.zen.api.sys.service.ISysUserService
  4. import org.slf4j.LoggerFactory
  5. import org.springframework.beans.factory.annotation.Autowired
  6. import org.springframework.web.bind.annotation.GetMapping
  7. import org.springframework.web.bind.annotation.RestController
  8. @RestController
  9. class ExampleController {
  10. companion object {
  11. private val logger = LoggerFactory.getLogger(ExampleController::class.java)
  12. }
  13. @Autowired
  14. private lateinit var mgrFondsService: IMgrFondsService
  15. @Autowired
  16. private lateinit var sysUserService: ISysUserService
  17. @GetMapping("testTransaction")
  18. fun testTransaction() {
  19. mgrFondsService.testTransaction()
  20. }
  21. @GetMapping("testLoad")
  22. fun testLoad() {
  23. sysUserService.selectListCacheable()
  24. }
  25. }