首页
3D照片墙
统计
留言
Search
1
1.OAuth 的简单理解
115 阅读
2
多个拦截器的执行顺序
105 阅读
3
基于Annotation方式的声明式事务
102 阅读
4
6.设计模式汇总
101 阅读
5
Unity 依赖注入
98 阅读
Java
JDBC
Spring
Spring MVC
SpringBoot
SpringCloud
MybatisPlus
Mybatis
Maven
SpringSecurity
JVM
java注解与反射
Java JUC并发编程
SSM
.NET
IdentityServer4
EF
.Net Core
AbpVNext + DDD
.NET MVC Api
前端
Jquery&JavaScript
uniapp
VUE
Echars
Vue底层原理
Python
Django
软考笔记
软件设计师
1.计算机组成与体系结构
10.面向对象技术
11.UML类图建模
12.面向对象程序设计
13.数据结构
14.算法基础
16.知识产权标准化
17.程序设计语言
2.操作系统
3.数据库
4.数据库设计
5.计算机网络
6.信息安全
7.系统开发基础
8.项目管理
9.数据流图
架构设计
CQRS架构
DDD架构
数据库技术
SQL锁
SqlServer
Oracle 主从备份
Oracle RAC集群
Mysql
云原生/容器技术
kubernetes
Docker
数据结构与算法
常用中间件
Redis
RabbitMQ 消息队列
ElasticSearch
其他
PHP
OAuth 2.0
WebSocket
ArkTs Harmony 开发
运维
Search
标签搜索
排序算法
vue
算法
遍历
docker
线性
数组
dom
synchronized
数据库
xml语言
log4j
bigint
静态函数
静态方法
哈夫曼树
const
冒泡排序
商标设计
命令模式
Bi8bo
累计撰写
304
篇文章
累计收到
6
条评论
首页
栏目
Java
JDBC
Spring
Spring MVC
SpringBoot
SpringCloud
MybatisPlus
Mybatis
Maven
SpringSecurity
JVM
java注解与反射
Java JUC并发编程
SSM
.NET
IdentityServer4
EF
.Net Core
AbpVNext + DDD
.NET MVC Api
前端
Jquery&JavaScript
uniapp
VUE
Echars
Vue底层原理
Python
Django
软考笔记
软件设计师
1.计算机组成与体系结构
10.面向对象技术
11.UML类图建模
12.面向对象程序设计
13.数据结构
14.算法基础
16.知识产权标准化
17.程序设计语言
2.操作系统
3.数据库
4.数据库设计
5.计算机网络
6.信息安全
7.系统开发基础
8.项目管理
9.数据流图
架构设计
CQRS架构
DDD架构
数据库技术
SQL锁
SqlServer
Oracle 主从备份
Oracle RAC集群
Mysql
云原生/容器技术
kubernetes
Docker
数据结构与算法
常用中间件
Redis
RabbitMQ 消息队列
ElasticSearch
其他
PHP
OAuth 2.0
WebSocket
ArkTs Harmony 开发
运维
页面
3D照片墙
统计
留言
搜索到
304
篇与
的结果
2024-12-01
JVM调优
-Xms1024m 将初始化的内存调成1024m -Xmx1024m 将虚拟机最大内存调成1024m -XX:+PrintGCDetails 启动时打印GC的详细信息 -XX:+HeapDumpOnOutOfMemoryError
2024年12月01日
11 阅读
0 评论
85 点赞
2024-11-30
管道处理模型
暂无简介
2024年11月30日
9 阅读
0 评论
58 点赞
2024-11-26
1.配置:applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd"> <!-- 读取db.properties --> <context:property-placeholder location="classpath:db.properties" /> <!-- 1.配置数据源 --> <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource"> <!-- 数据库驱动 --> <property name="driverClassName" value="${jdbc.driver}"></property> <!-- 连接数据库的URL --> <property name="url" value="${jdbc.url}"></property> <!-- 连接数据库的用户名,密码 --> <property name="username" value="${jdbc.username}"></property> <property name="password" value="${jdbc.password}"></property> <!-- 最大连接数 --> <property name="maxTotal" value="${jdbc.maxTotal}"></property> <!-- 最大空闲连接数 --> <property name="maxIdle" value="${jdbc.maxIdle}"></property> <!-- 初始化连接数 --> <property name="initialSize" value="${jdbc.initialSize}"></property> </bean> <!-- 4.事务管理器,依赖数据源 --> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"></property> </bean> <!-- 通知传播行为 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="save*" propagation="REQUIRED" /> <tx:method name="insert*" propagation="REQUIRED" /> <tx:method name="add*" propagation="REQUIRED" /> <tx:method name="create*" propagation="REQUIRED" /> <tx:method name="delete*" propagation="REQUIRED" /> <tx:method name="update*" propagation="REQUIRED" /> <tx:method name="find*" propagation="SUPPORTS" read-only="true" /> <tx:method name="select*" propagation="SUPPORTS" read-only="true" /> <tx:method name="get*" propagation="SUPPORTS" read-only="true" /> </tx:attributes> </tx:advice> <!-- 编写aop让spring自动对目标生成代理,需要使用AspectJ的表达式 --> <aop:config> <!-- 切面:将切入点与通知整合 --> <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.boot_crm.core.service.*.*(..))" /> </aop:config> <!-- 配置Mybatis工厂 --> <bean class="org.mybatis.spring.SqlSessionFactoryBean"> <!-- 注入数据源 --> <property name="dataSource" ref="dataSource"></property> <!-- 指定核心配置文件位置 --> <property name="configLocation" value="classpath:mybatis-config.xml"></property> </bean> <!-- Mapper代理开发(基于MapperScannerConfigurer) --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.boot_crm.dao"></property> </bean> <!-- 配置@Service扫描 --> <context:component-scan base-package="com.boot_crm.core.service"></context:component-scan> </beans>
2024年11月26日
6 阅读
0 评论
88 点赞
2024-11-22
加载静态资源
1、首先确保 django.contrib.staticfiles 已经添加到settings.INSTALLED_APPS中。 2、确保在 settings.py中设置了STATIC_URL。 3、在已经安装了的 app 下创建一个文件夹叫做 static ,然后再在这个 static 文件夹下创建一个当前 app 的名字的文件夹,再把静态文件放到这个文件夹下。 4、如果有一些静态文件是不和任何 app 挂钩的。那么可以在 settings.py中添加 STATICFILES_DIRS,以后 DTL 就会在这个列表的路径中查找静态文件。比如可以设置为: STATIC_URL = '/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR,"static") ] 关闭DEBUG后使用 STATIC_ROOT = [os.path.join(BASE_DIR, 'static')] 5、在模版中使用 load 标签加载 static 标签。比如要加载在项目的 static 文件夹下的 style.css 的文件。那么示例代码如下: {% load static %} <link rel="stylesheet" href="{% static 'style.css' %}"> 如果不想每次在模版中加载静态文件都使用 load 加载static 标签,那么可以在 settings.py 中的TEMPLATES/OPTIONS 添加 'builtins':['django.templatetags.static'],这样以后在模版中就可以直接使用 static 标签,而不用手动的 load 了。 'builtins': ['django.templatetags.static']
2024年11月22日
89 阅读
0 评论
95 点赞
2024-11-17
10.作业管理
先来先服务法 时间片轮转法短 作业优先法 最高优先权优先法 高响应比优先法 响应比=(作业等待时间+作业执行时间)/作业执行时间
2024年11月17日
55 阅读
0 评论
54 点赞
1
2
3
4
...
61