自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

剑指天下的博客

新世界的天窗

  • 博客(11)
  • 收藏
  • 关注

原创 quartz的配置类

package com.zhiyou100.quartz.config;import com.zhiyou100.quartz.job.MyJob;import com.zhiyou100.quartz.job.RedisJob;import org.quartz.*;import org.quartz.impl.StdSchedulerFactory;import org.springframework.boot.autoconfigure.cache.CacheProperties;imp

2020-05-30 20:32:53 671

原创 SSM项目中的jdbc.properties

driver=com.mysql.jdbc.Driverurl=jdbc:mysql://localhost:3306/actor?characterEncoding=UTF-8name=rootpassword=123456

2020-04-20 10:56:22 313

原创 SSM项目中的MYbatis.xml文件

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration> ...

2020-04-20 10:55:03 227

原创 SSM中的springmvc.xml

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co...

2020-04-20 10:53:39 136

原创 SSM中的spring.xml文件

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://ww...

2020-04-20 10:52:34 139

原创 SSM项目中的wem.xml文件

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" ><web-app> <display-name>Archetyp...

2020-04-20 10:51:06 195

原创 SSM项目常用的依赖

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org...

2020-04-20 10:48:21 378

原创 durid 连接池 的配置类

@Configurationpublic class DruidConfig { private static final Logger logger = LoggerFactory.getLogger(DruidConfig.class); @Value("${spring.datasource.druid.url}") private String dbUrl;...

2020-04-20 10:45:21 172

原创 springboot项目中的常用依赖

<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </de...

2020-04-20 10:42:39 671

原创 springboot中的配置文件 application.yml

server: port: 8080spring: datasource: type: com.alibaba.druid.pool.DruidDataSource druid: driver-class-name: com.mysql.jdbc.Driver #基本属性 url: jdbc:mysql://localhost:330...

2020-04-20 10:38:37 410

原创 springboot 实体类

@Data@ToString@TableName("drug")public class Drug { @TableId(type = IdType.AUTO) private Integer id; @TableField("imagesAddress") private String imagesAddress; @TableField("imPr...

2020-04-20 10:28:45 2270 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除