dao @Repository --写在dao层 service @Service --写在service层 controller @Controller --写在controller层 @Scope --写在多人访问controller上 属性注入 @Autowired --写在需要注入的属性上 ...
分类:
编程语言 时间:
2020-11-07 15:46:00
阅读次数:
20
#菜单模块 ##Controller package com.atguigu.atcrowdfunding.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired ...
分类:
其他好文 时间:
2020-11-02 10:21:42
阅读次数:
24
背景某天运营反馈,点了一次保存,但是后台出现了3条数据,我当时就想,不应该啊,这代码我几万年没动了,我当时就叫他先别操作了,保留一下现场,我去排查一下。我看了下新增的代码,直接右键查看作者没想到三歪做过改动,我就去问三歪,XX模块的新增代码你是不是动过?他沉默了很久没说话,然后抓起桌子上用剩下来的纸擦了擦鬓角留下的汗水,咽了一下口水说,是的我改过,我把之前dubbo的xml配置方式改成了注解的方式
分类:
其他好文 时间:
2020-11-01 10:51:37
阅读次数:
18
1. 在pom中添加所需依赖 创建一个springboot工程,添加所需要的依赖,持久化用的是mybatis <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</a ...
分类:
编程语言 时间:
2020-11-01 10:24:47
阅读次数:
21
package redis.config; import org.springframework.beans.factory.annotation.Autowired;import org.springframework.data.redis.connection.DataType;import o ...
分类:
其他好文 时间:
2020-10-31 02:05:49
阅读次数:
14
配置文件配置fdfs_client.conf配置文件#连接超时时间,针对socket套接字函数connect,默认为30秒connect_timeout=30000#网络通讯超时时间,默认是60秒network_timeout=60000tracker_server=47.98.159.15:22122导入依赖<dependency><groupId>org.csource
分类:
编程语言 时间:
2020-10-30 11:35:42
阅读次数:
25
1、下面讲解RabbitMQ配置:截图如下:代码如下:@Configurationpubliccla***abbitMQConfigimplementsRabbitListenerConfigurer{privatestaticfinalLoggerlogger=LoggerFactory.getLogger(RabbitMQConfig.class);//资源owner账户ID信息@Value(
分类:
其他好文 时间:
2020-10-29 10:36:51
阅读次数:
26
importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.data.redis.core.RedisTemplate;importorg.springframework.data.redis.core.StringRedisTemplate;importorg.springframe
分类:
其他好文 时间:
2020-10-29 10:36:31
阅读次数:
27
一,alibaba短信接口调用 1)调用阿里的短信接口是很方便的,前提是你要开通好阿里的短信服务; 二,开通大体流程 1)登录阿里控制台 >开通短信服务 >交钱 >获取AK >配置签名(配置消息签名,一般是公司名) >配置模板(配置消息内容,例如:你的验证码是${code},请妥善保管…..) >开 ...
分类:
其他好文 时间:
2020-10-29 10:27:34
阅读次数:
31
/** 原始注解:用途,自己编写的类注入容器使用* @Component* @Controller* @Service* @Repository* 以上4个功能基本一样,类似加入<bean id="userDao" class="cn.UserImpl"></bean>** @Autowired:自 ...
分类:
编程语言 时间:
2020-10-29 09:39:15
阅读次数:
24