⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 coursecounttilecontroller.java

📁 Sample for Spring coding
💻 JAVA
字号:
package com.springinaction.training.tiles;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.struts.tiles.ComponentContext;import org.springframework.context.ApplicationContext;import org.springframework.web.servlet.view.tiles.ComponentControllerSupport;import com.springinaction.training.model.Student;import com.springinaction.training.service.StudentService;public class CourseCountTileController extends ComponentControllerSupport {  protected void doPerform(ComponentContext componentContext,      HttpServletRequest request, HttpServletResponse response)      throws Exception {    ApplicationContext context = getApplicationContext();    StudentService studentService =         (StudentService) context.getBean("studentService");        Student student =         (Student) request.getSession().getAttribute("student");        int courseCount =         studentService.getCompletedCourses(student).size();        componentContext.putAttribute("courseCount",         new Integer(courseCount));  } }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -