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

  • Home
  • SEARCH
  • 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 8920389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:15:27+00:00 2026-06-15T06:15:27+00:00

I am from the Java Hibernate and Symfony2 background where I used to write

  • 0

I am from the Java Hibernate and Symfony2 background where I used to write the routing within the controller on the top of function like this:

/**
 * @Route("/blog")
 */
class PostController extends Controller
{

I know its not available in Django but is there any way I can code some decorator etc. so that I can mention the URL like this:

@URL("/mytest")
class myView():
    pass
  • 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-15T06:15:28+00:00Added an answer on June 15, 2026 at 6:15 am

    While it would be very undjangonic, you could try something like this:

    project/
        decorators.py
        views.py
        urls.py
    
    # decorators.py
    from django.conf import settings
    from django.utils.importlib import import_module
    from django.conf.urls.defaults import patterns, url
    
    def URL(path):
        path = r'^%s$' % path[1:]  # Add delimiters and remove opening slash
        def decorator(view):
            urls = import_module(settings.ROOT_URLCONF)
            urls.urlpatterns += patterns('', url(path, view))
            return view
        return decorator
    
    # views.py
    from .decorators import URL
    
    @URL('/')
    def home(request):
        # your view
    
    @URL('/products')
    def products(request):
        # your view
    
    
    # urls.py
    from django.conf.urls import patterns
    
    from . import views  # import the modules with your views
    
    urlpatterns = patterns('',)  # create an empty url dispatcher to append to
    

    And make sure every file containing this decorator is imported before processing urls (e.g. by importing them in the urls file).

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

Sidebar

Related Questions

new to Laravel (coming from Java spring), while using Route::get('/', function() { return Hello
I am using hibernate to do mapping from my java class to oracle tables.
Coming from Java , I'm used to the package structure (com.domain.appname.tier) Now I've started
I am coming from Java to Ruby and this -7 mod 3 = 2
Background: I'm coming from Java background so not too familiar with Javascript. We are
I have a Java (6) application which uses Hibernate (V3.3.2) to read data from
I am running an aggregate function in java through hibernate and for some reason
In php Codeigniter you can write: $this->db->select('username')->from->('users')->where('id',5); Do you know any good lib for
When I was working with java spring hibernate struts2 eclipse project. I used buildpath->
Is there any eclipse plugin available to create hibernate hbm file from java file??

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.