mirror of
https://github.com/luoye663/e5.git
synced 2024-12-26 03:38:53 +00:00
修复读邮件数量问题
This commit is contained in:
parent
057d43e5c6
commit
a3b0e2a0e6
@ -50,20 +50,12 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
|||||||
.apply(usernamePasswordAuthenticationConfig);
|
.apply(usernamePasswordAuthenticationConfig);
|
||||||
/*关闭创建session*/
|
/*关闭创建session*/
|
||||||
http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS);
|
http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS);
|
||||||
/*formLogin()
|
|
||||||
.loginPage("/user/login")// 登陆页面
|
|
||||||
.loginProcessingUrl("/user/loginFrom")// 登陆表单提交请求
|
|
||||||
.and()*/
|
|
||||||
http.authorizeRequests().antMatchers("/user/login", "/user/loginFrom", "/auth2/getGithubUrl").permitAll()// 指定相应的请求 不需要验证
|
http.authorizeRequests().antMatchers("/user/login", "/user/loginFrom", "/auth2/getGithubUrl").permitAll()// 指定相应的请求 不需要验证
|
||||||
// .and()
|
// .and()
|
||||||
// .authorizeRequests().antMatchers("/quartz/**").permitAll()//测试
|
// .authorizeRequests().antMatchers("/quartz/**").permitAll()//测试
|
||||||
.anyRequest()// 任何请求
|
.anyRequest()// 任何请求
|
||||||
.authenticated();// 都需要身份认证
|
.authenticated();// 都需要身份认证
|
||||||
// http.exceptionHandling().accessDeniedHandler();
|
|
||||||
// http.formLogin().loginProcessingUrl("api/getInfo");
|
|
||||||
|
|
||||||
// http.formLogin().usernameParameter("username");
|
|
||||||
// http.formLogin().passwordParameter("password");
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -206,6 +206,9 @@ public class OutlookServiceImpl extends ServiceImpl<OutlookMapper, Outlook> impl
|
|||||||
count = jsonObject.get("value").getAsJsonArray().size();
|
count = jsonObject.get("value").getAsJsonArray().size();
|
||||||
}
|
}
|
||||||
JsonArray value = jsonObject.get("value").getAsJsonArray();
|
JsonArray value = jsonObject.get("value").getAsJsonArray();
|
||||||
|
if (count == 0) {
|
||||||
|
count = value.size();
|
||||||
|
}
|
||||||
for (int i = 0; i < count - 1; i++) {
|
for (int i = 0; i < count - 1; i++) {
|
||||||
JsonObject mail = value.get(i).getAsJsonObject();
|
JsonObject mail = value.get(i).getAsJsonObject();
|
||||||
String id = mail.get("id").getAsString();
|
String id = mail.get("id").getAsString();
|
||||||
|
Loading…
Reference in New Issue
Block a user