Simple FreeMarker random number generator

FreeMarker doesn’t have a random number generator function. I needed a really simple solution that would allow me to pick a random image URL to be displayed on the homepage.

<#--
* Generates a "random" integer between min and max (inclusive)
*
* Note the values this function returns are based on the current
* second the function is called and thus are highly deterministic
* and SHOULD NOT be used for anything other than inconsequential
* purposes, such as picking a random image to display.
-->
<#function rand min max>
  <#local now = .now?long?c />
  <#local randomNum = _rand +
    ("0." + now?substring(now?length-1) + now?substring(now?length-2))?number />
  <#if (randomNum > 1)>
    <#assign _rand = randomNum % 1 />
  <#else>
    <#assign _rand = randomNum />
  </#if>
  <#return (min + ((max - min) * _rand))?round />
</#function>
<#assign _rand = 0.36 />

I’ve added this function to the FreeMarker Spring extensions I’ve been building up. You might use it in your code like so:

<img src="<@spring.url "/images/" + springx.rand(1, 10) + ".jpg" />" />

Note that there are obvious issues with this function. Aside from being based heavily on the second the function is called, you’ll notice that the min and max have less probability of being generated as the other values…what? I said it was simple.

523 thoughts on “Simple FreeMarker random number generator

  1. What if freestyle-developments.co.uk could leverage TikTok for authentic leads? Our AI-powered growth service pinpoints the perfect users—based on hashtags they’re into and profiles they’re following—to supercharge your reach and drive traffic back to you. We’ve had websites like yours see 100+ leads in 30 days.
    Want to make TikTok work for freestyle-developments.co.uk? Watch this short video for more info: https://www.youtube.com/shorts/sfVup2NhPQ4

  2. Grow your site with our AI-driven traffic solution, delivering keyword and location-targeted visitors at a lower cost than pricey paid advertising. Get started now.

    https://marketingaged.com/

  3. Drive targeted traffic to your site with our affordable AI-powered solution, saving you big compared to pricey paid ad campaigns. Contact us to learn more.

    https://marketingaged.com/

  4. Attract high-quality visitors to your site with our AI-driven traffic solution, far more affordable than traditional paid advertising. Ready to boost your conversions?

    https://marketingaged.com/

  5. Save big with our AI-powered traffic service, sending keyword-targeted visitors from specific locations to your website for less than paid ad campaigns. Learn more today.

    https://marketingaged.com/

  6. Ever thought how freestyle-developments.co.uk could tap into TikTok for genuine leads? Our AI-powered growth service targets the perfect users—based on hashtags they use and profiles they’re following—to skyrocket your reach and send traffic back to you. We’ve had similar websites see 100+ new leads in a month.
    Want to make TikTok work for freestyle-developments.co.uk? Get more information here: https://boostgrow.co/

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>