@value@requestbody

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@value@requestbody相关的知识,希望对你有一定的参考价值。

http://sunjun041640.blog.163.com/blog/static/256268322013112325324373/

Spring MVC 通过@Value注解读取.properties配置内容

可以读取spring配置文件中定义的要加载的配置文件,pom文件定义的中读不到。

在bean(可是controller, service, dao等了)中,使用@Value注解:

1 @Value("#{configProperties[‘userPageSize‘]}")
2 private String userPageSize; 

在applicationContext.xml配置:

 <bean id="configProperties"class="org.springframework.beans.factory.config.PropertiesFactoryBean">
 <property name="locations">
<list>
<value>classpath:/config/*.properties</value>
</list>
</property>
</bean>
 <bean id="propertyConfigurer"class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
 <property name="properties"ref="configProperties"/>
</bean>

第二步:

建立配置文件内容:

例如:userPageSize=5

第三步:

在Controller中使用注解获得配置项内容:

 

1 @Value("#{configProperties[‘userPageSize‘]}")
2 private String userPageSize; 

第四步:

后面的代码就可以使用userPageSize这个私有变量了,这个字符串的值就是我们配置文件中配置的5.

<script type="text/javascript">  
    $(document).ready(function(){  
     $.ajax({
         type:‘POST‘,
         url:‘<%=path%>/user/ceshi.do‘,
	 dataType:"json",      
	 contentType:"application/json",   
	 data:JSON.stringify([{id:"1",name:"cehshi1"},{id:"2",name:"ceshi2"}]),
         success:function(){			
	 }
    });
</script>



@RequestMapping(value = "/ceshi", method = {RequestMethod.POST }) 
@ResponseBody
public void ceshi(@RequestBody User[] users){
	for (User user : users) {
	System.out.println(user.getId());
	}
}

注: 后台用对象数组接收User[] users  不要用List<T>  list只支持简单属性类型   

 mockmvc post json

 http://jiuyuehe.iteye.com/blog/1882424

  1. mockMvc.perform(  
  2.                 post(URI, "json").characterEncoding("UTF-8")  
  3.                     .contentType(MediaType.APPLICATION_JSON)  
  4.                     .content(json.getBytes()))  

 

 

 

以上是关于@value@requestbody的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器

VSCode自定义代码片段——声明函数