SpringMVC:properties属性加载配合controller使用

本文介绍如何在SpringMVC中结合属性文件(properties)进行配置,以减少Controller中的硬编码。通过在springmvc.xml中配置属性文件加载,然后在Controller中使用@Value注解注入属性值,实现在Controller方法中灵活调用属性。
为了controller上的减少硬编码,在springmvc.xml中配置属性文件的加载,给controller提供使用。
1.编写crm.properties
customer_from_type=002
customer_industry_Type=001
customer_level_Type=006
2.在springmvc.xml中配置crm.properties
    <!-- 属性文件加载 -->
    <context:property-placeholder location="classpath:crm.properties"/>
3.在controller中调用属性

注意使用@Value注入

    @Value("${customer_from_type}")
    private String customer_from_type;

    @Value("${customer_industry_Type}")
    private String customer_industry_Type;

    @Value("${customer_level_Type}")
    private String customer_level_Type;
4.在controller方法体中调用属性
    @RequestMapping("list")
    public String list(Model model) throws Exception {

        //查询来源
        List<BaseDict> fromType = baseDictService.getBaseDictByCode(customer_from_type);
        //查询行业
        List<BaseDict> industryType = baseDictService.getBaseDictByCode(customer_industry_Type);
        //查询级别
        List<BaseDict> levelType = baseDictService.getBaseDictByCode(customer_level_Type);

        //设置数据模型返回
        model.addAttribute("fromType", fromType);
        model.addAttribute("industryType", industryType);
        model.addAttribute("levelType", levelType);

        return "customer";
    }
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值