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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:19:07+00:00 2026-05-14T02:19:07+00:00

I have a Spring application that I believe has some bottlenecks, so I’d like

  • 0

I have a Spring application that I believe has some bottlenecks, so I’d like to run it with a profiler to measure what functions take how much time. Any recommendations to how I should do that?

I’m running STS, the project is a maven project, and I’m running Spring 3.0.1

  • 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-05-14T02:19:08+00:00Added an answer on May 14, 2026 at 2:19 am

    I’ve done this using Spring AOP.

    Sometime I need an information about how much time does it take to execute some methods in my project (Controller’s method in example).

    In servlet xml I put

    <aop:aspectj-autoproxy/>
    

    Also, I need to create the class for aspects:

    @Component
    @Aspect
    public class SystemArchitecture {
    
        @Pointcut("execution(* org.mywebapp.controller..*.*(..))")
        public void businessController() {
        }
    }
    

    And profiler aspect:

    @Component
    @Aspect
    public class TimeExecutionProfiler {
    
        private static final Logger logger = LoggerFactory.getLogger(TimeExecutionProfiler.class);
    
        @Around("org.mywebapp.util.aspects.SystemArchitecture.businessController()")
        public Object profile(ProceedingJoinPoint pjp) throws Throwable {
            long start = System.currentTimeMillis();
            logger.info("ServicesProfiler.profile(): Going to call the method: {}", pjp.getSignature().getName());
            Object output = pjp.proceed();
            logger.info("ServicesProfiler.profile(): Method execution completed.");
            long elapsedTime = System.currentTimeMillis() - start;
            logger.info("ServicesProfiler.profile(): Method execution time: " + elapsedTime + " milliseconds.");
    
            return output;
        }
    
        @After("org.mywebapp.util.aspects.SystemArchitecture.businessController()")
        public void profileMemory() {
            logger.info("JVM memory in use = {}", (Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()));
        }
    }
    

    That’s all.
    When I request a page from my webapp, the information about method executing time and JVM memory usage prints out in my webapp’s log file.

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

Sidebar

Related Questions

I have a web application in Spring that has a functional requirement for generating
We have a Hibernate/Spring application that have the following Spring beans: <bean id=transactionManager class=org.springframework.orm.hibernate3.HibernateTransactionManager
We have a (non-web app) Spring application that throws a NoSuchBeanDefinitionException when running tests
In my spring application context file, I have something like: <util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String"
I have a web application using JPA and JTA with Spring. I would like
I have developed an application with Spring MVC that deals with bulk data insert/update.
I have a Java application that's very String-heavy - it takes a feed of
I have a C# application that includes the following code: string file = relativePath.txt;
I'm using Hibernate with Spring in my application. I have been consistently using detached
Hey I am developing an desktop application using Spring and Hibernate, and I have

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.