We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我检查发现v6.8.20 源码和jar包对不上
源码:
public class PinyinTokenizerFactory extends AbstractTokenizerFactory { private PinyinConfig config; public PinyinTokenizerFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) { super(indexSettings, settings, name); config=new PinyinConfig(settings); } @Override public Tokenizer create() { return new PinyinTokenizer(config); } }
jar包反编译之后:
/* * Decompiled with CFR 0.152. * * Could not load the following classes: * org.apache.lucene.analysis.Tokenizer * org.elasticsearch.common.settings.Settings * org.elasticsearch.env.Environment * org.elasticsearch.index.IndexSettings * org.elasticsearch.index.analysis.AbstractTokenizerFactory */ public class PinyinTokenizerFactory extends AbstractTokenizerFactory { private PinyinConfig config; public PinyinTokenizerFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) { super(indexSettings, name, settings); this.config = new PinyinConfig(settings); } public Tokenizer create() { return new PinyinTokenizer(this.config); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我检查发现v6.8.20 源码和jar包对不上
源码:
jar包反编译之后:
The text was updated successfully, but these errors were encountered: