Created
October 9, 2012 15:36
-
-
Save wataru420/3859576 to your computer and use it in GitHub Desktop.
iOS6はnoCacheだよ!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
response.setHeader("Pragma", "No-cache"); | |
response.setHeader("Cache-Control", "no-cache"); | |
response.setDateHeader("Expires", 0); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<package name="myApp-default" extends="struts-default"> | |
<result-types> | |
<result-type name="json" class="org.apache.struts2.json.JSONResult"> | |
<param name="noCache">true</param> | |
</result-type> | |
</result-types> | |
</package> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment