Want to know the name of jsp quicker way

I have a struts application.
all the url i find comes with .do extension in the address bar whatever you work upon.
so, it becomes very difficult for me to understand which jsp it is in my project especially whenevr there are large number of jsp's.
though i have the struts-config.xml . however, i dont like to search for to find the name of the jsp from it from a given .do url.
is there any straightforward tricks/tips which could tell me whats the name of the jsp in a quicker way ?

though i have the struts-config.xml . however, i dont
like to search for to find the name of the jsp from
it from a given .do url.That's how Struts works. Too bad you don't like it...
>
is there any straightforward tricks/tips which could
tell me whats the name of the jsp in a quicker way ?Nope. The mappings / navigation rules are in struts-config.xml , which provides one of the benefits of Struts, i.e. loose coupling , so that changes can be made without touching Java code.

Similar Messages

  • I want to know the name icloud account

    I want to know the name icloud account
    <Personal Information Edited by Host>

    Hi,
    As Rich Mentione there is no BAPI for Schedule Agreeement.
    You can Try : ME_UPDATE_AGREEMENT_PO  -Update Pur Document
                  ME_READ_OUTLINE_AGREEMENT_DISP --Read outline agreement item (From Agreement no and item no)
    Lanka

  • Want To Know The Name OF Company Table

    In Administration -> Choose Company, It gives me the list of all Company Name,Database Name,Version etc .
    I Want to know the Table Name which has all information about company name and all.
    Regards

    The db version is stored in table CINF (Version). Others information gave you members already. If you want have list of all dbs on the server like in login screen, you should use select from information schemas as
    select * from information_schema.tables where table_name = 'CINF'
    and youll receive all databases, where the CINF table is, then create tmp table (dbname, company, version fields) and in cursor go through all results from select * from information_schema.tables where table_name = 'CINF'
    make insert into this tmp table. At the end make select from this tmp table.

  • I want to know the pre compiler jsp

    please give information

    see in one interview ,i was beign asked about the pre
    compiler jsp.
    i told him that i dont know.What did he ask about it?

  • I want to know the name of bapi for schedule agreement

    hi,
    please give me the name of bapi for schedule agreement (mm module) .
    ok bye
    sreenu.

    Hi,
    As Rich Mentione there is no BAPI for Schedule Agreeement.
    You can Try : ME_UPDATE_AGREEMENT_PO  -Update Pur Document
                  ME_READ_OUTLINE_AGREEMENT_DISP --Read outline agreement item (From Agreement no and item no)
    Lanka

  • I want to know the name of motherboard for dv1345ea because i want to replace it with anther one

    my p/n: ef036ea
    its out of warrnty

    thnnx 4 replaying
    i dont know how to get the model of motherboard
    i got this
    http://h20141.www2.hp.com/Hpparts/SearchProduct.aspx?mscssid=604F2E30CE534611AE03E598A746C56B&Search...
    and
    http://h20141.www2.hp.com/Hpparts/SearchProduct.aspx?mscssid=604F2E30CE534611AE03E598A746C56B&Search...
    can u help me to get the modul of my motherboard ?

  • I want to know the table name and field name of this description

    i want to know the table name and field names of this description
    supplieriddomain

    Hi SV,
    Try this:
    1) Go to SE15 (Repository info system)
    2) Expand ABAP Dictionary
    3) Expand Fields
    4) Click on Table Fields
    5) Enter the field name you want to search in field name or use wild cards with keywords in short decription field (like supplier ) and Execute.
    OR
    If it's a screen field, do a F1 on the field and click on Technical information on the help window popped up from Menu..this will tell you the field name along with structure or table name.
    Hope this helps you.
    Regards,
    Vivek

  • I want to know the table name and field names of this descriptions

    i want to know the table name and field names of this descriptions
    FPAApprover.UniqueName,FPAApprover.PasswordAdapter

    Hi Ramana,
    Go to the system table DD03T , use the table contents..
    In the field ' DDTEXT ' , give your keywords...
    for ex : say Unique name... as  UniqueName* in field DDTEXT
    Execute.. u will find the entries....
    May be ur problem will be solved...
    Thank u...
    Reward if useful and close the thread..
    Rajiv

  • I just want to change the name of my network. no other settings?

    I just want to change the name of my network. no other settings?

    We can likely help, but we do not know what device that you are asking about....or....what version of AirPort Utility that you have on your computer.
    (Normally, we would know things like this, but our crystal ball is broken).

  • Want to know database name from RMAN prompt

    Hi there
    I want to know database name when I am in RMAN prompt.
    Regards
    Jewel

    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN> connect target /
    connected to target database: SYSLOG (DBID=3659208352)
    Here SYSLOG is the database name
    Regards
    Asif Kabir
    user623166
    Handle:      user623166
    Status Level:      Newbie
    Registered:      Mar 2, 2008
    Total Posts:      42
    Total Questions:      *18 (18 unresolved)*
    Name      jewel_bd
    Occupation      DBA
    -- mark your helpful post as correct/helpful and close all the answered threads.

  • I want to know the top 10-20 Store procedures used in the table.

    Hello All, 
    There are total 3500+ Store procedures created in the server. So,  I want to know the top 10-20 Store procedures used in the table. Like which store procedures are important and what are they, is there any code to find them? 
    I think the question might be very silly, but i don't know which store procedure to look at it. 
    Please help me on this issue.
    Thanks.
    Thanks, Shyam.

    By what? CPU? Memory? Execution count?
    Glenn Berry wrote this
    -- HIGH CPU ************
          -- Get Top 100 executed SP's ordered by execution count
          SELECT TOP 100 qt.text AS 'SP Name', qs.execution_count AS 'Execution Count',  
          qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()) AS 'Calls/Second',
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.total_worker_time AS 'TotalWorkerTime',
          qs.total_elapsed_time/qs.execution_count AS 'AvgElapsedTime',
          qs.max_logical_reads, qs.max_logical_writes, qs.total_physical_reads, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.execution_count DESC
          -- HIGH CPU *************
          -- Get Top 20 executed SP's ordered by total worker time (CPU pressure)
          SELECT TOP 20 qt.text AS 'SP Name', qs.total_worker_time AS 'TotalWorkerTime', 
          qs.total_worker_time/qs.execution_count AS 'AvgWorkerTime',
          qs.execution_count AS 'Execution Count', 
          ISNULL(qs.execution_count/DATEDIFF(Second, qs.creation_time, GetDate()), 0) AS 'Calls/Second',
          ISNULL(qs.total_elapsed_time/qs.execution_count, 0) AS 'AvgElapsedTime', 
          qs.max_logical_reads, qs.max_logical_writes, 
          DATEDIFF(Minute, qs.creation_time, GetDate()) AS 'Age in Cache'
          FROM sys.dm_exec_query_stats AS qs
          CROSS APPLY sys.dm_exec_sql_text(qs.sql_handle) AS qt
          WHERE qt.dbid = db_id() -- Filter by current database
          ORDER BY qs.total_worker_time DESC
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Does anyone know the name of the new macbook to be launched by apple?

    Does anyone know the name of the new macbook to be launched by apple?

    How would we know? We're only users.
    If you want speculation and rumour try MacRumours or some such.

  • I have pavilion g6 1313 ax. I want to know the full process of partition.

    I have a hp pavilion G6 1313AX with OS windows 7 64-bit. i had deleted the recovery partition(D). i want to know the full process of partition of the HDD or if there is any way of doing partition without effecting the current OS. The size of C- is 441 gb nd i wanna to reduce it.

    You could use a partition program like partition magic but I would still make sure you have all your important pictures and documents saved to an external device or copied to another machine just in case.
    Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may click on the white star in the "Kudos" button for any helpful post to give that person a quick thanks. These feedback tools help keep our community active, so you receive better answers faster.

  • How can I know the name(s) of font from built-in font dialog from Word VSTO AddIns.

    Hi, All !!
    I would like to extract some values from the built-in font dialogbox "wdDialogFormatFont" through VSTO AddIns.
    Figured out short codes;
    Microsoft.Office.Interop.Word.Dialog 
    F_DLG  =  Globals.ThisAddIn.Application.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFormatFont];    
    F_DLG.Show();
    MessageBox.Show( F_DLG.FontMajor.ToString() );
    MessageBox.Show( F_DLG.FontHighAnsi.ToString() );
    Ther last two lines (red ones) do not work at all.
    How can I know the name of the fonts ? (English and Non-English)
    In VBA, it works beautifully.
    Thanks !!

    Hi,
    According to the description, you want to get some options from the build-in dialog dispaly by code.
    As far as I know, we can declare an dynamic object to achieve the goal. Here is the code for your reference:
    dynamic F_DLG = Globals.ThisAddIn.Application.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFormatFont];
    F_DLG.Show();
    MessageBox.Show(F_DLG.FontMajor);
    Also we can use refrection to get the property we wanted like below:
    Microsoft.Office.Interop.Word.Dialog F_DLG = Globals.ThisAddIn.Application.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFormatFont];
    F_DLG.Show();
    MessageBox.Show(F_DLG.GetType().InvokeMember("FontMajor", BindingFlags.GetProperty, null, F_DLG, null).ToString());
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Want to know the coding  of  trigger

    hi,
    i have created a 'Push Button' and the name of the button is APPROVE, which means that higher authority of the company can use this button and after approving that form the user can see the information.
    The problem is this i can't understand the coding of the APPROVE 'Push Button'.
    Plzz help me, it's realy urgent.

    hi,
    iknow the to create trgger but i just want to know the coding of that trriger .
    ( have created a 'Push Button' and the name of the button is APPROVE, which means that higher authority of the company can use this button and after approving that form the user can see the information.
    The problem is this i can't understand the coding of the APPROVE 'Push Button'.)

Maybe you are looking for