Is the tiny URL stored in any of the confluence DB Schema?

Ruth Truong January 22, 2012

I've been looking for the tiny URL in the conflurence DB Schema. There doesnt seem to be a place where this is store other then on the pages itself?

1 answer

1 accepted

0 votes
Answer accepted
David Peterson
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 22, 2012

The Tiny URL is generated based on the page/blog post's unique ID. You can access it via the com.atlassian.confluence.pages.TinyURL class. Eg:

AbstractPage pageOrBlogPost = findPage(...);
TinyUrl tinyUrl = new TinyURL( pageOrBlogPost );
String url = confluenceContextPath + "/x/" + tinyUrl.getIdentifier();

You'll need to get the context path from elsewhere, possibly the ContextPathHolder or ApplicationProperties which you can inject into your code.

Hope that helps!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events