Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.bits.protocolanalyzer.mvc.controller; import java.net.URL; import java.net.URLClassLoader; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.servlet.ModelAndView; /** * * @author amit */ @Controller @RequestMapping("/") public class HomeController { @RequestMapping public ModelAndView home() { ClassLoader cl = ClassLoader.getSystemClassLoader(); URL[] urls = ((URLClassLoader) cl).getURLs(); ModelAndView mav = new ModelAndView("home"); mav.addObject("paths", urls); return mav; } }