Package com.isfasiel.main.test.web

Source Code of com.isfasiel.main.test.web.Test2Controller

package com.isfasiel.main.test.web;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import com.isfasiel.main.base.web.BaseController;
import com.isfasiel.util.test.TestUtil;
@Controller
public class Test2Controller extends BaseController {
 
  @Autowired
  TestUtil util;
 
  @RequestMapping(value="/test/do2.do")
  public String test(){
    util = new TestUtil();
    util.print();
    return "";
  }

}
TOP

Related Classes of com.isfasiel.main.test.web.Test2Controller

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.