You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/**
* 文件名 : SetGlusterfs.java
* 版权 : <版权/公司名>
* 描述 : <描述>
* @author liliy
* 版本 : <版本>
* 修改时间: 2016年9月8日
* 修改内容: <修改内容>
*/
package com.platform.controller ;
import javax.servlet.http.HttpServletRequest ;
import javax.servlet.http.HttpServletResponse ;
import org.springframework.stereotype.Controller ;
import org.springframework.web.bind.annotation.RequestMapping ;
/**
* <一句话功能简述>
* <功能详细描述>
* @author liliy
* @version [版本号, 2016年9月8日]
* @see [相关类/方法]
* @since [产品/模块版本]
*/
@Controller
public class SetGlusterfsController {
@RequestMapping ( "/tes" )
public Object defaultHandler ( HttpServletRequest req , HttpServletResponse request ) {
//<2F> <> <EFBFBD> ?ƥ<> <C6A5> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD>
try {
System . out . println ( "fsdfds" ) ;
return "listAll" ;
} catch ( Exception e ) {
e . printStackTrace ( ) ;
return "result" ;
}
}
}