Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7921841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:44:15+00:00 2026-06-03T16:44:15+00:00

In Play, when overloading controller methods, those individual methods cant be routed more than

  • 0

In Play, when overloading controller methods, those individual methods cant be routed more than once cause the complier doesn’t like it.

Is there a possible way to get around this?

Say if I had two functions in my Product controller: getBy(String name) and getBy(long id).

And I had two different routes for these functions declared in routes:

GET /p/:id            controllers.Product.getBy(id: Long)
GET /p/:name          controllers.Product.getBy(name: String)

I want to use the “same” function for different routes, is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T16:44:17+00:00Added an answer on June 3, 2026 at 4:44 pm

    No, it’s not possible, there are two solutions.

    First is to use 2 names:

    public static Result getByLong(Long id) {
        return ok("Long value: " + id);
    }
    
    public static Result getByString(String name) {
        return ok("String value: " + name);
    }
    

    also you should use separate routes for it, otherwise you’ll get type mismatch

    GET   /p-by-long/:id         controllers.Monitor.getByLong(id: Long)
    GET   /p-by-string/:name     controllers.Monitor.getByString(name: String)
    

    Second solution is using one method with String argument and check internally if it can be converted to Long

    public static Result getByArgOfAnyType(String arg) {
        try {
            Long.parseLong(arg);
            return ok("Long: " + arg);
        } catch (Exception e) {
            return ok("String: " + arg);
        }
    }
    

    route:

    GET   /p/:arg     controllers.Monitor.getByArgOfAnyType(arg : String)
    

    I know that doesn’t fit your question but at least will save your time. Also keep in mind that there could be better ways to determine if String can be converted to numeric type, ie in this question: What's the best way to check to see if a String represents an integer in Java?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to play more than one video the same time / on
Play will assign the parameters from request to action parameters, like: public static void
Using play framework 1.2.4 with scala. I have few play jobs that looks like
I play an animation like this: - (CCSprite *)explodeWithBatchNode:(CCSpriteBatchNode *)batchNode andAnimation:(CCAnimation *)ani { CCSprite
Play framework doesn't support the servlet specification, nevertheless among it's deployment options there's the
Does play framework server have a rewrite_mode functionality like apache? That is: how can
I want to play multiple tracks simuntanusly and mix them. Apply effects like flange,
Play has a nifty file upload mechanism where uploads can be performed like so:
play framework: 1.2.3 Hi, I am trying to purge my database by using play's
Play with it here: http://jsbin.com/ocicu4/4/edit Simple Accordion, I only want one section open at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.