-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
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
目前这个版本必须登录后才能看报表,如何设置不登录也能查看报表 #2919
Comments
好的,尽快修复 |
感谢 |
已修复,在1.8.1版本中可以使用以下配置,来允许预览页面不登录访问。
|
我现在用的授权版本1.7.9,是否能更新修复一下这个问题,我这边等急用这个 |
分享链接可以访问 |
@AXXZSTHL 图裂了 |
问题能复现吗,还需要我提供什么线索吗 |
@AXXZSTHL 您好,我这边用 |
项目有缓存,我clean了一下又好了,谢谢 |
现在是可以不登录打开,但是导出Excel还是要求登陆 |
我也碰到了同样的问题,因为不开放源代码所以很多问题还不好处理。 |
可以不实现token,此时积木报表将不进行权限校验,任何人都可以访问;你需要在上游控制好权限。 |
导出excel需要登录,这个问题有办法解决吗? |
在
|
版本号:1.8.0
问题描述:jimureport-example 目前升级1.8.0后登录可以用了,但是查看每个报表都得登录,否则打开就是空白
错误日志&截图:
重现步骤:在Chrome浏览器打开积木报表并且登录,复制报表地址到edge浏览器就直接白屏了,我目前设置了/jmreport/view/为免登录,但是好像还是不行
http.csrf().disable()
.authorizeRequests()
.antMatchers("/login/").permitAll()
.antMatchers("/jmreport/view/").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login/login.html")
.loginProcessingUrl("/login")
.successHandler(new CustomLoginSuccessHandler())
.permitAll().and()
.logout()
.invalidateHttpSession(true)
.clearAuthentication(true).permitAll();
友情提示(为了提高issue处理效率):
The text was updated successfully, but these errors were encountered: