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.
22 lines
747 B
22 lines
747 B
package com.fr.plugin.cpic.web; |
|
|
|
import com.fr.decision.fun.impl.AbstractControllerRegisterProvider; |
|
import com.fr.plugin.cpic.web.controller.CpicEntryController; |
|
import com.fr.plugin.cpic.web.controller.CpicHomeController; |
|
import com.fr.plugin.cpic.web.controller.CpicHomeIndexController; |
|
import com.fr.plugin.cpic.web.controller.CpicUserController; |
|
|
|
/** |
|
* 注册新的接口 |
|
*/ |
|
public class CpicControllerRegisterProvider extends AbstractControllerRegisterProvider { |
|
@Override |
|
public Class<?>[] getControllers() { |
|
return new Class[]{ |
|
CpicHomeIndexController.class, |
|
CpicHomeController.class, |
|
CpicUserController.class, |
|
CpicEntryController.class, |
|
}; |
|
} |
|
}
|
|
|