美文网首页
2022-06-21

2022-06-21

作者: 须涂僧 | 来源:发表于2022-06-21 15:57 被阅读0次

    ```

    package com.hengan.springboottest.controller;

    import org.springframework.beans.factory.annotation.Value;

    import org.springframework.web.bind.annotation.RequestMapping;

    import org.springframework.web.bind.annotation.RestController;

    @RestController

    public class HelloController {

        //读取配置文件

        @Value("${user.uname}")

        private String uname;

        @RequestMapping("/method1")

        public String getProp(){

            return "读取配置文件的第一种方式:通过Value注解      "+uname;

        }

    }

    ```

    相关文章

      网友评论

          本文标题:2022-06-21

          本文链接:https://www.haomeiwen.com/subject/rjrevrtx.html