springmvc:设置后端响应给前端的json数据转换成String格式

 设置spring-mvc.xml:

'''xml



    
    
    
    
        
        
            
                text/html;charset=UTF-8
            
        
    
    

    
        
            
                
                
            
        
    

'''

web.xml读取spring-mvc.xml

'''xml




  
    contextConfigLocation
    classpath:spring-config.xml
  


  
    org.springframework.web.context.ContextLoaderListener
  

  
    springMVC
    org.springframework.web.servlet.DispatcherServlet
    
      contextConfigLocation
      classpath:spring-mvc.xml
    
  
  
    springMVC
    /
  

'''

你可能感兴趣的:(前端,json)