Copy link to clipboard
Copied
Hi,
I have recently upgraded to CF2021.
I am having an issue with date formatting.
I have the code below.
2 Correct answers
It was a bug. The solution is to add the following flag
-Dcoldfusion.datemask.useDasdayofmonth=true
to your JVM settings.
You can do this in one of 2 ways:
- via the ColdFusion Administrator. Go to the page Server Settings > Java and JVM. Place the mouse cursor at the end of the contents of the input field JVM Arguments. Press the space bar once, and add the above flag. Press Submit Changes. Restart ColdFusion.
- via the file /cfusion/bin/jvm.config. Open the file in a text editor. Locate the set
Well, to be clear, that is only if you have applied update 1 (from last week). If not, the JVM arg will do no good unless you do also get and implement a special hotfix that was made available to solve this problem (by way of that jvm arg which it enabled and honors). For more, see my blog post from soon after CF2021 was released in November:
Copy link to clipboard
Copied
It was a bug. The solution is to add the following flag
-Dcoldfusion.datemask.useDasdayofmonth=true
to your JVM settings.
You can do this in one of 2 ways:
- via the ColdFusion Administrator. Go to the page Server Settings > Java and JVM. Place the mouse cursor at the end of the contents of the input field JVM Arguments. Press the space bar once, and add the above flag. Press Submit Changes. Restart ColdFusion.
- via the file /cfusion/bin/jvm.config. Open the file in a text editor. Locate the setting that starts with java.args=. The values are on the right-hand-side of the = symbol. Follow the list of values to the very end. Place the mouse cursor there. Press the space bar once, and add the above flag. Save the edited file. Restart ColdFusion.
Copy link to clipboard
Copied
Well, to be clear, that is only if you have applied update 1 (from last week). If not, the JVM arg will do no good unless you do also get and implement a special hotfix that was made available to solve this problem (by way of that jvm arg which it enabled and honors). For more, see my blog post from soon after CF2021 was released in November:
/Charlie (troubleshooter, carehart. org)
Copy link to clipboard
Copied
Thanks for the help, Problem solved 🙂

