package org.rcisoft.common.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Created with family.
* User: cy
* Date: 16/5/20
* Time: 下午1:48
* description: autowired servlet
*/
@Controller
public class HttpServletController {
@Autowired
protected HttpServletRequest request;
@Autowired
protected HttpServletResponse response;
public HttpServletController() {
}
}
-
luzhuang authored
# Conflicts: # src/main/java/org/rcisoft/business/bchapter/controller/BChapterController.java # src/main/java/org/rcisoft/business/bchapter/service/BChapterService.java # src/main/java/org/rcisoft/business/bchapter/service/impl/BChapterServiceImpl.java # src/main/java/org/rcisoft/business/bcourse/service/BCourseService.java # src/main/java/org/rcisoft/business/bfile/service/impl/BFileServiceImpl.java # src/main/java/org/rcisoft/business/blesson/dao/BLessonRepository.java # src/main/java/org/rcisoft/business/blesson/service/BLessonService.java # src/main/java/org/rcisoft/business/blessonperson/dao/BLessonPersonRepository.java # src/main/java/org/rcisoft/common/component/Global.java # src/main/java/org/rcisoft/common/controller/HttpServletController.java # src/main/java/org/rcisoft/common/controller/UserController.java # src/main/java/org/rcisoft/config/OkHttpConfig.java # src/main/java/org/rcisoft/core/command/RemoteExecuteCommand.java # src/main/java/org/rcisoft/core/util/FreemarkerUtil.java
caf252ae