摘要:
通过SolrJ获取Solr检索结果 1、通过SolrParams的方式提交查询参数 SolrClient solr = new HttpSolrClient("http://localhost:8080/solr/core"); Map map = new H... 阅读全文
摘要:
spring mvc form表单submit直接提交出现乱码。导致乱码一般是服务器端和页面之间编码不一致造成的。根据这一思路可以依次可以有以下方案。 1、jsp页面设置编码 2、tomcat服务器设置,在server.xml中添加编码设置 URIEncoding="UTF-8" 3、web.xml 阅读全文