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
pageHelper version:2.0.0
public PageInterceptor() { String bannerEnabled = System.getProperty("pagehelper.banner"); if (StringUtil.isEmpty(bannerEnabled)) { bannerEnabled = System.getenv("PAGEHELPER_BANNER"); } //默认 TRUE if (StringUtil.isEmpty(bannerEnabled) || Boolean.parseBoolean(bannerEnabled)) { log.debug("\n\n" + ",------. ,--. ,--. ,--. \n" + "| .--. ' ,--,--. ,---. ,---. | '--' | ,---. | | ,---. ,---. ,--.--. \n" + "| '--' | ' ,-. | | .-. | | .-. : | .--. | | .-. : | | | .-. | | .-. : | .--' \n" + "| | --' \\ '-' | ' '-' ' \\ --. | | | | \\ --. | | | '-' ' \\ --. | | \n" + "`--' `--`--' .`- / `----' `--' `--' `----' `--' | |-' `----' `--' \n" + " `---' `--' is intercepting.\n"); } }
The text was updated successfully, but these errors were encountered:
除了 pr#pagehelper/pagehelper-spring-boot#177 还要改哪些?
Sorry, something went wrong.
只要加这个配置即可
No branches or pull requests
pageHelper version:2.0.0
建议直接再加一个PageHelperProperties 加一个属性为bannnerEnable
那么则在PageInterceptor 拦截器直接过滤即可。不期望在代码上硬设置
The text was updated successfully, but these errors were encountered: