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 8869787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:33:55+00:00 2026-06-14T17:33:55+00:00

I have created my own annotation, which I utilize via reflection to make a

  • 0

I have created my own annotation, which I utilize via reflection to make a decision in my code. The annotation has a default value set for its sole element. Is there a way I can access the default value via reflection?

PageableRequestMapping.java (Annotation)

package org.tothought.controllers.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

@Retention(RetentionPolicy.RUNTIME)
public @interface PageableRequestMapping {
    String variablePath() default "/";
}

Psuedo Code to Retrieve Default Value

private int parsePageNumber(StringBuffer requestURL,
        PageableRequestMapping pageableRequestMapping) {

        String variablePath = pageableRequestMapping.variablePath();

    //Psuedo code doesn't work in Java, included to illustrate intentions   
        if(variablePath.equalsIgnoreCase(pageableRequestMapping.variablePath().default())){
           //handle default case    
        }else{
          //handle different case
        }
        return 0;
}

My research of the issue has turned up no examples. I theorized this value could be accessed in a static manner through the class, but it cannot. So I am left with two questions.

  • Is it possible to get the default value of an element within an annotation?
  • If so, how?

Also, I know I could hard code this value, however I would like to make the program slightly more robust.

  • 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-14T17:33:57+00:00Added an answer on June 14, 2026 at 5:33 pm

    You can use reflection to get the Method object, and then utilize Method#getDefaultValue().

    Method method = pageableReqMapping.annotationType().getMethod("variablePath");
    String variablePath = (String) method.getDefaultValue();
    

    Here’s a concrete example:

    public class AnnotationTest {
    
      public static void main(String[] args) throws Exception {
        Class<?> clazz = Annotation.class;
        Method method = clazz.getDeclaredMethod("value");
        String value = (String) method.getDefaultValue();
        System.out.println(value);
      }
    
      public @interface Annotation {
        String value() default "default value";
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a custom list view, each row has it's own custom selector,
I have created my own IConnectionIdGenerator implementation which for simpicty in my webforms application
I have created my own silverlight API to get/set data from/to MailChimp. It was
I have created my own simple logger class which uses COM interop to redirect
I have created my own Attached Property like this: public static class LabelExtension {
I have created my own customized lots of architecture including n-tier layers for different
I have created my own debugger application. It attaches to a process and creates
I have created my own button class called custom_btn. I created it on the
I have created blank Asp.Net-MVC 3 web application and want to write my own
I have my own asp.net cookie created like this: var authTicket = new FormsAuthenticationTicket(

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.