easy-es、elasticsearch、分词器 与springboot 结合的代码我这里就不放了,我这里直接是使用代码。
基础准备:
创建实体类:
Data
// 索引名
IndexName("test_jc")
public class TestJcES {// id注解IndexId(type IdType.CUSTOMI…
常见的BeanFacatory后处理器
先给出没有添加任何BeanFactory后处理器的测试代码
public class TestBeanFactoryPostProcessor {public static void main(String[] args) {GenericApplicationContext context new GenericApplicationContext();context.registerBean("co…
想要正确理解const关键字,只需记住一句话:
cosnt关键字优先修饰左边,如果左边每东西,就作用于右边。
const int a; 修饰int a 不能改变 const int *a ; int const *a; 修饰int 指针a指向的地址可以改变,但是地址中…