how2j.cn

-->
下载区
文件名 文件大小
请先登录 440k
增值内容 440k
440k

解压rar如果失败,请用5.21版本或者更高版本的winrar

点击下载 winrar5.21
步骤 1 : 先运行,看到效果,再学习   
步骤 2 : 模仿和排错   
步骤 3 : 搜索栏下的分类信息   
步骤 4 : 左上角变形金刚图片的超链位置   
步骤 5 : 购物车数量显示   
步骤 6 : OtherInterceptor   
步骤 7 : WebMvcConfigurer   

步骤 1 :

先运行,看到效果,再学习

edit
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
步骤 3 :

搜索栏下的分类信息

edit
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
搜索栏下的分类信息
步骤 4 :

左上角变形金刚图片的超链位置

edit
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
左上角变形金刚图片的超链位置
步骤 5 :

购物车数量显示

edit
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
购物车数量显示
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.interceptor; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; import com.how2java.tmall.pojo.Category; import com.how2java.tmall.pojo.OrderItem; import com.how2java.tmall.pojo.User; import com.how2java.tmall.service.CategoryService; import com.how2java.tmall.service.OrderItemService; public class OtherInterceptor implements HandlerInterceptor { @Autowired CategoryService categoryService; @Autowired OrderItemService orderItemService; @Override public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o) throws Exception { return true; } @Override public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception { HttpSession session = httpServletRequest.getSession(); User user =(User) session.getAttribute("user"); int cartTotalItemNumber = 0; if(null!=user) { List<OrderItem> ois = orderItemService.listByUser(user); for (OrderItem oi : ois) { cartTotalItemNumber+=oi.getNumber(); } } List<Category> cs =categoryService.list(); String contextPath=httpServletRequest.getServletContext().getContextPath(); httpServletRequest.getServletContext().setAttribute("categories_below_search", cs); session.setAttribute("cartTotalItemNumber", cartTotalItemNumber); httpServletRequest.getServletContext().setAttribute("contextPath", contextPath); } @Override public void afterCompletion(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) throws Exception { } }
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; import com.how2java.tmall.interceptor.LoginInterceptor; import com.how2java.tmall.interceptor.OtherInterceptor; @Configuration class WebMvcConfigurer extends WebMvcConfigurerAdapter{ @Bean public OtherInterceptor getOtherIntercepter() { return new OtherInterceptor(); } @Bean public LoginInterceptor getLoginIntercepter() { return new LoginInterceptor(); } @Override public void addInterceptors(InterceptorRegistry registry){ registry.addInterceptor(getOtherIntercepter()) .addPathPatterns("/**"); registry.addInterceptor(getLoginIntercepter()) .addPathPatterns("/**"); } }


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2022-07-06 为什么 购物车数量用session传递,而另外两个属性用application传递呢?
dyf137




为什么 购物车数量用session传递,而另外两个属性用application传递呢?,站长可以帮忙解答一下这样做的原因吗
@Override
    public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception {
        HttpSession session=httpServletRequest.getSession();
        User user=(User)session.getAttribute("user");
        int cartTotalItemNumber=0;
        if(null!=user){
            List<OrderItem> ois=orderItemService.getByUserAndOrderIsNull(user.getId());
            for(OrderItem oi:ois){
                cartTotalItemNumber++;
            }
        }
        List<Category> cs=categoryService.list();
        String contextPath=session.getServletContext().getContextPath()+"/tmall_springboot/";

        session.setAttribute("cartTotalItemNumber",cartTotalItemNumber);
        httpServletRequest.getServletContext().setAttribute("categories_below_search", cs);
        httpServletRequest.getServletContext().setAttribute("contextPath", contextPath);
    }

							


1 个答案

how2j
答案时间:2022-08-01
因为购物车是和单个用户关联的,所以用session. 而那两个application属性是全局的,每个用户都一样,所以就用application啦



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到





2022-06-09 关于拦截器的自动注入问题
刘一首




配置类中写一个方法获取拦截器的bean对象而不直接new是为了实现用到的service类的依赖注入,我想改成直接在拦截器的类对象文件里直接写@Bean,但是发现不可以,这是为什么?只有站长写的这一种实现方式吗?
    @Bean
    public OtherInterceptor getOtherIntercepter() {
        return new OtherInterceptor();
    }

							


1 个答案

how2j
答案时间:2022-07-04
直接写@Bean 这种方式有的springboot版本支持,有的不支持,这个要看具体哪个版本了。。。



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到





2022-01-11 关于右上角购物车显示数量
2020-11-17 拦截器也会拦截js,css,jpg等静态资源,而拦截器中有数据库操作,应当excludePathPattern一下
2020-05-14 为什么要增加拦截器来实现呢?


提问太多,页面渲染太慢,为了加快渲染速度,本页最多只显示几条提问。还有 9 条以前的提问,请 点击查看

提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 实践项目-天猫整站Springboot-其他拦截器 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图