I have created my j hipster application called Bookstore.After running my application it will go authentication . i need not this authentication .if there is any way to open my application without j hipster log in page?
In the path "app/config" there is the class MicroserviceSecurityConfiguration.class Change the permissions there, in the case
("/api/**").Authenticated()
for
("/api/**").permitAll()
To disable Authentication :
.antMatchers("/api/**").authenticated()
with .antMatchers("/**").permitAll()
in SecurityConfiguration.java*jhiHasAnyAuthority
in all *.html
files[ngSwitch]="isAuthenticated()
and all it's *ngSwitchCase
checkLogin(
methods in all *service.ts filesIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With