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.

314 thoughts on “Simple FreeMarker random number generator

  1. Our AI-optimized traffic solution sends engaged, keyword-specific visitors to your site for less than traditional paid ads. Learn more to grow your business.

    https://cutt.ly/Sr3e4wYE

  2. Our AI-powered traffic solution delivers engaged, keyword-specific visitors from your target locations, saving you money compared to expensive paid ad platforms. Contact us today.

    https://cutt.ly/Er3e4rVu

  3. Aiming to supercharge your website’s reach? Our intelligent AI tool attracts targeted visitors through keywords or geographic filters from continents to towns.
    Seeking increased profits, active website traffic, or an expanded digital presence?
    We refine it to match your strategy. Enjoy a 7-day free trial period with no contract. Start now:

    https://cutt.ly/Sr7yIdvN

  4. Your freestyle-developments.co.uk website could be missing out on thousands of visitors. Use our AI powered system to drive targeted traffic to your website and increase leads and sales for free: https://cutt.ly/6r615Ail

  5. Which keywords and locations do you need traffic from for freestyle-developments.co.uk ? Check our traffic network to see what kind of volume we have for your keywords and locations: https://cutt.ly/jtqiYjnv
    Then start a 7 day free trial of our targeted traffic service that is powered by AI, no contracts, cancel at any time.

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>