https://www.elastic.co/guide/en/elasticsearch/guide/current/getting-started.html Elasticsearch is a real-time distributed search and analytics engine. It allows you to explore your data at a speed and at a scale never before possible. It is used for…
当使用mybatis 做模糊查询时如果这样写 会报 Could not set parameters for mapping: ParameterMapping{property='keywords' # 是起的占位符的作用,但是写在了字符串里面无法起到占位符的作用,这是我们要用 $ 这里 $ 接收内容并且连接字符串,所形成的sql 就是 select id,name from tablename where name like '%关键字%'…