Grails logout button not working

user2133404

I am using the following code in my logout button :

<a id="login-control-logout" href="${createLink(controller:'LicGenerator', action:'logout')}"><i class="icon-off"></i> Logout</a></li>

Inside my controller, I am using the following code :

  def logout() {
    request.getSession().invalidate()
    response.setHeader("Cache-Control","no-cache,no-store,must-revalidate")
    response.setHeader("Pragma","no-cache")
    response.setDateHeader("Expires", 0)
    redirect(uri:'/login.html')
}

It goes to login.html, but when I enter the username and password again, it doesn't log me back in and throws an error

type Status report

message /LicGenerator/j_security_check

description The requested resource (/LicGenerator/j_security_check) is not available.

When I refresh the browser, I got this error :

type Status report

message Invalid direct reference to form login page

description The request sent by the client was syntactically incorrect (Invalid direct reference to form login page).

Also, the back button takes me to page even though I added cache control to response.

davydotcom

Simply invalidating your session for spring security is probably not advisable. As there is a SecuritySession which also has cookies. It may be better to use whats provided by spring security already.

import grails.plugin.springsecurity.SpringSecurityUtils

redirect uri: SpringSecurityUtils.securityConfig.logout.filterProcessesUrl

Then you can configure your default login url via the config options for the spring security plugin

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

grails facebook logout not deleting cookie

분류에서Dev

wp_logout_url($redirect); is not working

분류에서Dev

Unexpected logout while working in IntelliJ IDEA

분류에서Dev

AngularJS show login/logout button conditionally in navbar on app page

분류에서Dev

Grails & AspectJ: advice for private methods is not working

분류에서Dev

previous button not working

분류에서Dev

Jade button onClick not working

분류에서Dev

Tooltip not working on submit button

분류에서Dev

Back button not working in Media player

분류에서Dev

jQuery close button isnt working

분류에서Dev

Check box with submit button not working

분류에서Dev

Onclick of a button run a function - not working?

분류에서Dev

Onclick of a button run a function - not working?

분류에서Dev

LIBGDX Android - button listener not working

분류에서Dev

Bootstrap button not working in Internet Explorer

분류에서Dev

The Enter button not working on Login page

분류에서Dev

Grails web-app image directory is not working properly in war

분류에서Dev

Input devices stop working after logout or switch-user in ubuntu 18.04 LTS

분류에서Dev

How to get onclick working with form submit button?

분류에서Dev

After translate animation button click not working

분류에서Dev

Bootstrap 3 hide navbar button not working on mobile?

분류에서Dev

Select tag not working with submit button in a table

분류에서Dev

jQuery .click not working on dynamically loaded button

분류에서Dev

ng-click not working when button is pushed

분류에서Dev

Android Camera Application: Capture button not working?

분류에서Dev

Delete Button in PHP isn't Working

분류에서Dev

styling on ion-button with disabled not working in ionic V4

분류에서Dev

Two submit button - default submit not working because of other

분류에서Dev

Adding a Facebook like button to my markup using iframe document not working

Related 관련 기사

  1. 1

    grails facebook logout not deleting cookie

  2. 2

    wp_logout_url($redirect); is not working

  3. 3

    Unexpected logout while working in IntelliJ IDEA

  4. 4

    AngularJS show login/logout button conditionally in navbar on app page

  5. 5

    Grails & AspectJ: advice for private methods is not working

  6. 6

    previous button not working

  7. 7

    Jade button onClick not working

  8. 8

    Tooltip not working on submit button

  9. 9

    Back button not working in Media player

  10. 10

    jQuery close button isnt working

  11. 11

    Check box with submit button not working

  12. 12

    Onclick of a button run a function - not working?

  13. 13

    Onclick of a button run a function - not working?

  14. 14

    LIBGDX Android - button listener not working

  15. 15

    Bootstrap button not working in Internet Explorer

  16. 16

    The Enter button not working on Login page

  17. 17

    Grails web-app image directory is not working properly in war

  18. 18

    Input devices stop working after logout or switch-user in ubuntu 18.04 LTS

  19. 19

    How to get onclick working with form submit button?

  20. 20

    After translate animation button click not working

  21. 21

    Bootstrap 3 hide navbar button not working on mobile?

  22. 22

    Select tag not working with submit button in a table

  23. 23

    jQuery .click not working on dynamically loaded button

  24. 24

    ng-click not working when button is pushed

  25. 25

    Android Camera Application: Capture button not working?

  26. 26

    Delete Button in PHP isn't Working

  27. 27

    styling on ion-button with disabled not working in ionic V4

  28. 28

    Two submit button - default submit not working because of other

  29. 29

    Adding a Facebook like button to my markup using iframe document not working

뜨겁다태그

보관