|
- package com.xkcoding.properties.controller;
-
- import cn.hutool.core.lang.Dict;
- import com.xkcoding.properties.config.ApplicationProperty;
- import com.xkcoding.properties.config.DeveloperProperty;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RestController;
-
- /**
- * <p>
- * 测试端点
- * </p>
- *
- * @author yangkai.shen
- * @date Created in 2022-08-12 21:12
- */
- @RestController
- public class PropertyController {
- private final ApplicationProperty applicationProperty;
- private final DeveloperProperty developerProperty;
-
- @Autowired
- public PropertyController(ApplicationProperty applicationProperty, DeveloperProperty developerProperty) {
- this.applicationProperty = applicationProperty;
- this.developerProperty = developerProperty;
- }
-
- @GetMapping("/property")
- public Dict index() {
- return Dict.create().set("applicationProperty", applicationProperty).set("developerProperty", developerProperty);
- }
- }
|