`
conkeyn
  • 浏览: 1533141 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

spring的rabbitmq配置

 
阅读更多

1、applicationContext-base.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:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:websocket="http://www.springframework.org/schema/websocket"
	xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:cache="http://www.springframework.org/schema/cache"
	xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:rabbit="http://www.springframework.org/schema/rabbit"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-4.1.xsd
    http://www.springframework.org/schema/cache
    http://www.springframework.org/schema/cache/spring-cache-4.1.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
    http://www.springframework.org/schema/websocket
    http://www.springframework.org/schema/websocket/spring-websocket-4.1.xsd
    http://www.springframework.org/schema/data/jpa
    http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
    http://www.springframework.org/schema/jdbc
    http://www.springframework.org/schema/jdbc/spring-jdbc-4.1.xsd
    http://www.springframework.org/schema/rabbit
    http://www.springframework.org/schema/rabbit/spring-rabbit-1.4.xsd
    http://www.springframework.org/schema/task
    http://www.springframework.org/schema/task/spring-task-4.1.xsd">

	<!-- 自动扫描包,可以写多个 -->
	<context:component-scan base-package="com.test.**">
		<context:exclude-filter type="annotation"
			expression="org.springframework.stereotype.Controller" />
	</context:component-scan>

	<!-- 开启注解事务只对当前配置文件有效 -->
	<tx:annotation-driven transaction-manager="transactionManager"
		proxy-target-class="true" />

	<jpa:repositories base-package="com.test.
		repository-impl-postfix="Impl" entity-manager-factory-ref="entityManagerFactory"
		transaction-manager-ref="transactionManager" />

	<bean id="entityManagerFactory"
		class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="packagesToScan" value="com.test. />
		<property name="persistenceProvider">
			<bean class="org.hibernate.ejb.HibernatePersistence" />
		</property>
		<property name="jpaVendorAdapter">
			<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
				<property name="generateDdl" value="true" />
				<property name="databasePlatform" value="${hibernate.dialect}" />
				<property name="showSql" value="${hibernate.show_sql}" />
			</bean>
		</property>
		<property name="jpaDialect">
			<bean class="org.springframework.orm.jpa.vendor.HibernateJpaDialect" />
		</property>
		<property name="jpaPropertyMap">
			<map>
				<entry key="hibernate.query.substitutions" value="true 1, false 0" />
				<entry key="hibernate.default_batch_fetch_size" value="16" />
				<entry key="hibernate.max_fetch_depth" value="2" />
				<entry key="hibernate.generate_statistics" value="true" />
				<entry key="hibernate.bytecode.use_reflection_optimizer"
					value="true" />
				<entry key="hibernate.cache.use_second_level_cache" value="${hibernate.cache.use_second_level_cache}" />
				<entry key="hibernate.cache.use_query_cache" value="${hibernate.cache.use_query_cache}" />
				<entry key="hibernate.hbm2ddl.auto" value="${hibernate.hbm2ddl.auto}" />
			</map>
		</property>
	</bean>

	<!--事务管理器配置 -->
	<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
		<property name="entityManagerFactory" ref="entityManagerFactory" />
	</bean>

	<!-- 数据源 -->
	<bean name="dataSource"
		class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="${hibernate.connection.driver_class}" />
		<property name="url" value="${hibernate.connection.url}" />
		<property name="username" value="${hibernate.connection.username}" />
		<property name="password" value="${hibernate.connection.password}" />
	</bean>

	<bean id="objectMapper" class="com.test.core.utils.JsonObjectMapper" />

	<!-- 初始化数据库记录 -->
	<jdbc:initialize-database data-source="dataSource"
		ignore-failures="ALL">
		<jdbc:script location="classpath:*.sql" encoding="UTF-8" />
	</jdbc:initialize-database>

	<!-- 异步的线程池,线程池的最在数不能设定太小,不然<rabbit:listener/>/@RabbitListener太多的话,会出现发无法正常消费问题 -->
	<task:executor id="taskExecutor" pool-size="4-256" queue-capacity="128" />

	<!-- queue litener 观察 监听模式 当有消息到达时会通知监听在对应的队列上的监听对象 -->
	<rabbit:annotation-driven />

	<bean id="rabbitListenerContainerFactory" class="org.springframework.amqp.rabbit.config.SimpleRabbitListenerContainerFactory">
		<property name="connectionFactory" ref="rabbitConnFactory" />
		<property name="transactionManager" ref="transactionManager" />
		<property name="concurrentConsumers" value="1" />
		<property name="maxConcurrentConsumers" value="10" />
		<property name="messageConverter" ref="jsonMessageConverter" />
		<property name="taskExecutor" ref="taskExecutor" />
		<property name="channelTransacted" value="true" />
		<property name="adviceChain">
			<array>
				<ref bean="retryInterceptor" />
			</array>
		</property>
	</bean>
	<!-- rabbit:admin用于管理(创建和删除) exchanges, queues and bindings等 -->

	<bean id="rabbitConnectionFactory" class="com.rabbitmq.client.ConnectionFactory">
		<property name="host" value="${rabbitmq.host}" />
		<property name="port" value="${rabbitmq.port}" />
		<property name="username" value="${rabbitmq.username}" />
		<property name="password" value="${rabbitmq.password}" />
		<property name="virtualHost" value="${rabbitmq.vhost}" />
		<property name="connectionTimeout" value="${rabbitmq.connection.timeout}" />
	</bean>

	<bean id="rabbitConnFactory" class="org.springframework.amqp.rabbit.connection.CachingConnectionFactory">
		<constructor-arg ref="rabbitConnectionFactory" />
		<property name="channelCacheSize" value="25" />
		<property name="executor" ref="taskExecutor" />
	</bean>

	<rabbit:admin connection-factory="rabbitConnFactory" id="rabbitAdmin" />

	<!-- 180秒 -->
	<rabbit:template id="amqpTemplate" reply-timeout="1000" connection-factory="rabbitConnFactory" message-converter="jsonMessageConverter" />


	<!-- 定义接收异常消息的exchange和queue -->
	<util:map id="dlxNaming" key-type="java.lang.String" value-type="java.lang.String">
		<entry key="zkcloud.subsystem.dlx.queue" value="#{'$dlx_queue_'+(T(com.zkteco.timecube.zkcloud.core.utils.PropertiesUtil).getValue('zkcloud.subsystem.code'))}" />
		<entry key="zkcloud.subsystem.dlx.exchange" value="#{'$dlx_ex_'+(T(com.zkteco.timecube.zkcloud.core.utils.PropertiesUtil).getValue('zkcloud.subsystem.code'))}" />
	</util:map>

	<rabbit:queue id="zkcloud.subsystem.dlx.queue" name="#{dlxNaming['zkcloud.subsystem.dlx.queue']}">
		<rabbit:queue-arguments>
			<entry key="x-message-ttl">
				<value type="java.lang.Long">86400000</value>
			</entry>
			<entry key="x-max-length">
				<value type="java.lang.Long">100</value>
			</entry>
		</rabbit:queue-arguments>
	</rabbit:queue>

	<rabbit:fanout-exchange id="zkcloud.subsystem.dlx.exchange" name="#{dlxNaming['zkcloud.subsystem.dlx.exchange']}">
		<rabbit:bindings>
			<rabbit:binding queue="zkcloud.subsystem.dlx.queue" />
		</rabbit:bindings>
	</rabbit:fanout-exchange>

	<bean id="retryInterceptor" class="org.springframework.amqp.rabbit.config.StatelessRetryOperationsInterceptorFactoryBean">
		<property name="messageRecoverer" ref="messageRecoverer" />
		<property name="retryOperations" ref="retryTemplate" />
	</bean>

	<!-- <bean id="messageRecoverer" class="org.springframework.amqp.rabbit.retry.RejectAndDontRequeueRecoverer" /> -->
	<!-- 拒绝请求消息,并回复该请求者的请求被服务端拒绝-->
	<bean id="messageRecoverer" class="com.test.retry.RejectAndRplyToRequeueRecoverer">
		<property name="replyToTemplate" ref="amqpTemplate"/>
	</bean>

	<bean id="retryTemplate" class="org.springframework.retry.support.RetryTemplate">
		<property name="backOffPolicy">
			<bean class="org.springframework.retry.backoff.ExponentialBackOffPolicy">
				<property name="initialInterval" value="1000" />
				<property name="maxInterval" value="10000" />
			</bean>
		</property>
		<property name="retryPolicy">
			<bean class="org.springframework.retry.policy.SimpleRetryPolicy">
				<property name="maxAttempts" value="1" />
			</bean>
		</property>
	</bean>

	<bean id="jsonMessageConverter"
		class="org.springframework.amqp.support.converter.Jackson2JsonMessageConverter"></bean>


	<!-- quartz配置 -->
	<bean class="com.zkteco.timecube.quartz.QuartJobSchedulingListener" />
	<bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
		<property name="jobFactory">
			<bean class="com.zkteco.timecube.quartz.SpringQuartzJobFactory"></bean>
		</property>
		<property name="dataSource" ref="dataSource" />
		<!-- 要记得要指定配置文件的位置 -->
		<property name="configLocation" value="classpath:config/quartz.properties" />
	</bean>
	<!-- quartz配置 -->

	<beans profile="develop">
		<bean id="propertyConfigurer" class="com.test.core.utils.PropertiesUtil"
			lazy-init="false">
			<property name="locations">
				<list>
					<value>classpath*:config/*.properties</value>
				</list>
			</property>
			<property name="fileEncoding" value="utf-8" />
		</bean>
		<!-- 连接rabbitmq -->
		<rabbit:connection-factory id="rabbitConnFactory"
			host="localhost" username="guest" password="guest" port="5672"
			virtual-host="/" connection-timeout="30000" executor="taskExecutor" />
	</beans>

	<beans profile="test">
		<bean id="propertyConfigurer" class="com.test.core.utils.PropertiesUtil"
			lazy-init="false">
			<property name="locations">
				<list>
					<value>classpath*:config/*.properties</value>
					<value>classpath*:config/test/*.properties</value>
				</list>
			</property>
			<property name="fileEncoding" value="utf-8" />
		</bean>
		<!-- 连接rabbitmq -->
		<rabbit:connection-factory id="rabbitConnFactory"
			host="192.168.0.179" username="guest" password="timeucbe" port="5672"
			virtual-host="/" connection-timeout="30000" executor="taskExecutor" />
	</beans>

	<beans profile="production">
		<bean id="propertyConfigurer" class="com.test.core.utils.PropertiesUtil"
			lazy-init="false">
			<property name="locations">
				<list>
					<value>classpath*:config/*.properties</value>
					<value>classpath*:config/production/*.properties</value>
				</list>
			</property>
			<property name="fileEncoding" value="utf-8" />
			<!-- 连接rabbitmq -->
			<rabbit:connection-factory id="rabbitConnFactory"
				host="114.215.82.3" username="guest" password="timecube" port="5672"
				virtual-host="/" connection-timeout="30000" executor="taskExecutor" />
		</bean>
	</beans>


</beans>

 2、Exchanges、routing keys、binding keys的配置

 

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:aop="http://www.springframework.org/schema/aop" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:websocket="http://www.springframework.org/schema/websocket"
	xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:cache="http://www.springframework.org/schema/cache"
	xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:rabbit="http://www.springframework.org/schema/rabbit"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-4.1.xsd
    http://www.springframework.org/schema/cache
    http://www.springframework.org/schema/cache/spring-cache-4.1.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
    http://www.springframework.org/schema/websocket
    http://www.springframework.org/schema/websocket/spring-websocket-4.1.xsd
    http://www.springframework.org/schema/data/jpa
    http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
    http://www.springframework.org/schema/jdbc
    http://www.springframework.org/schema/jdbc/spring-jdbc-4.1.xsd
    http://www.springframework.org/schema/rabbit
    http://www.springframework.org/schema/rabbit/spring-rabbit-1.4.xsd
    http://www.springframework.org/schema/task
    http://www.springframework.org/schema/task/spring-task-4.1.xsd">

	<rabbit:queue id="queue_one" durable="true" auto-delete="false"
		name="queue_one">
		<!-- <rabbit:queue-arguments>
			<entry key="x-message-ttl">
				<value type="java.lang.Long">100</value>
			</entry>
			<entry key="x-ha-policy" value="all" />
		</rabbit:queue-arguments> -->
	</rabbit:queue>
	<rabbit:direct-exchange name="my-mq-exchange"
		durable="true" auto-delete="false" id="my-mq-exchange">
		<rabbit:bindings>
			<rabbit:binding queue="queue_one" key="queue_one_key" />
		</rabbit:bindings>
	</rabbit:direct-exchange>


	<rabbit:queue id="queue_two" durable="true" auto-delete="false"
		exclusive="false" name="queue_two" />
	<rabbit:direct-exchange name="my-mq-exchange1"
		durable="true" auto-delete="false" id="my-mq-exchange1">
		<rabbit:bindings>
			<rabbit:binding queue="queue_two" key="queue_two_key" />
		</rabbit:bindings>
	</rabbit:direct-exchange>
</beans>

 

import javax.annotation.Resource;

import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * 查
 * @version 0.0.0.1
 * @since 2015年3月30日 下午3:22:49
 */
@Service("producerMq")
@Transactional
public class ProducerMq
{

	@Resource
	private AmqpTemplate amqpTemplate;

	//同步示例
	public void sendDataToCrQueue(Object obj)
	{
		amqpTemplate.convertAndSend("my-mq-exchange", "queue_one_key", obj);
	}
	
}

 

import javax.annotation.Resource;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * 大
 * @version 0.0.0.1
 * @since 2015年3月30日 下午3:23:12
 */
@Controller
public class MessageController
{
	@Resource
	private ProducerMq producer;

	@RequestMapping("/producer")
	public void producer() throws Exception
	{
		for (int i = 0; i < 100; i++)
		{
			producer.sendDataToCrQueue("data" + i);
		}
	}

}

 

 

 

import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.messaging.handler.annotation.SendTo;
import org.springframework.stereotype.Component;

/**
 * 队列监听器
 * 
 * @author <a href="mailto:zhongqing.lin@zkteco.com">zhongqing.lin</a>
 * @version 0.0.0.1
 * @since 2015年3月30日 下午7:02:59
 */
@Component
public class QueueOneLitener
{

	@RabbitListener(queues = "queue_one", exclusive = false,containerFactory="rabbitListenerContainerFactory",admin="rabbitAdmin")
	//参数中使用@Header获取mesage
	@SendTo("my-mq-exchange1/queue_two_key")
	public org.springframework.messaging.Message<String> data1(Message message)
	{
		System.out.println("headers:" + message.getMessageProperties().toString());
		String data = new String(message.getBody());
		System.out.println("queue_one data:" + data);
		
		return org.springframework.messaging.support.MessageBuilder.withPayload(data).build();
	}
}

 注意:

@SendTo的value填入的值应该是“exchange/routingKey”格式。

  • foo/bar - the replyTo exchange and routingKey.
  • foo/ - the replyTo exchange and default (empty) routingKey.
  • bar or /bar - the replyTo routingKey and default (empty) exchange.
  • / or empty - the replyTo default exchange and default routingKey.

   参考地址:http://docs.spring.io/spring-amqp/reference/htmlsingle/#async-annotation-driven-reply

 

import org.springframework.amqp.core.Message;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.stereotype.Component;

/**
 * 队列监听器
 * 
 * @author <a href="mailto:zhongqing.lin@zkteco.com">zhongqing.lin</a>
 * @version 0.0.0.1
 * @since 2015年3月30日 下午7:02:59
 */
@Component
public class QueueTwoLitener
{

	@RabbitListener(queues = "queue_two", exclusive = false)
	//参数中使用@Header获取mesage
	public void onMessage(Message message)
	{
		System.out.println("queue_two data:" + new String(message.getBody()));
	}
}

 

package com.test.rabbit.retry;

import java.util.Map;

import org.apache.commons.lang3.StringUtils;
import org.springframework.amqp.core.Address;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.core.MessageProperties;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.amqp.rabbit.retry.RejectAndDontRequeueRecoverer;

import com.test.utils.MessageUtil;
import com.test.utils.PropKeys;

/**
 * 拒绝消息,并回复
 * 
 * @version 0.0.0.1
 * @since 2015年4月21日 下午5:05:35
 */
public class ZkRejectAndRplyToRequeueRecoverer extends RejectAndDontRequeueRecoverer
{
	/** 用于发送拒绝消息状态给请求者 */
	RabbitTemplate replyToTemplate;

	@Override
	public void recover(Message message, Throwable cause)
	{
		MessageProperties mp = message.getMessageProperties();
		if (mp != null && StringUtils.isNotBlank(mp.getReplyTo()) && replyToTemplate != null)
		{
			Map<String, Object> headers = mp.getHeaders();
			System.err.println(headers.toString());
			Object vLang = headers.get(PropKeys.LANG);
			String lang = "en";
			if (vLang != null)
			{
				lang = (String) vLang;
			}
			com.test.utils.Message rejectRespMsg = new com.test.utils.Message(false);
			rejectRespMsg.setPayload(null);
			MessageUtil.changeResult(rejectRespMsg, "test.rabbit.replyto.interceptor.illegal.request", lang);
			Address address = new Address(mp.getReplyTo());
			replyToTemplate.convertAndSend(address.getExchangeName(), address.getRoutingKey(), rejectRespMsg);
		}
		super.recover(message, cause);
	}

	public void setReplyToTemplate(RabbitTemplate replyToTemplate)
	{
		this.replyToTemplate = replyToTemplate;
	}

}

 

分享到:
评论
8 楼 pgx89112 2017-04-23  
大神,请赐我一份这个示例的项目代码吧,万分感谢,1530259668@qq.com
7 楼 孟江波 2016-08-04  
学习了,楼主,能否提供一份源代码啊,学习一下,十分感谢!!!
467325929@qq.com
6 楼 qljoeli 2016-03-11  
学习了,楼主,能否提供一份源代码啊,学习一下,十分感谢!!!
1206729928@qq.com 
5 楼 javafengyi 2016-01-11  
楼主,能否源码提供一份,学习一下,十分感激!763085545@qq.com   
4 楼 yangkai 2015-11-26  
能否提供一份源码学习,万分感谢,394777014@qq.com
3 楼 hjx86 2015-11-11  
楼主,能发一份源码给我学习下吗?spring 整合 rabbitmq的
2 楼 黎明前_告白 2015-11-05  
楼主 能发一份给我吗  363579680@qq 非常感谢啊。
1 楼 javajob21 2015-06-29  
楼主,能否源码提供一份,学习一下,十分感激!403666004@qq.com

相关推荐

    受激拉曼散射计量【Stimulated-Raman-Scattering Metrology】 附Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    MMC整流器技术解析:基于Matlab的双闭环控制策略与环流抑制性能研究,Matlab下的MMC整流器技术文档:18个子模块,双闭环控制稳定直流电压,环流抑制与最近电平逼近调制,优化桥臂电流波形,高效

    MMC整流器技术解析:基于Matlab的双闭环控制策略与环流抑制性能研究,Matlab下的MMC整流器技术文档:18个子模块,双闭环控制稳定直流电压,环流抑制与最近电平逼近调制,优化桥臂电流波形,高效并网运行。,MMC整流器(Matlab),技术文档 1.MMC工作在整流侧,子模块个数N=18,直流侧电压Udc=25.2kV,交流侧电压6.6kV 2.控制器采用双闭环控制,外环控制直流电压,采用PI调节器,电流内环采用PI+前馈解耦; 3.环流抑制采用PI控制,能够抑制环流二倍频分量; 4.采用最近电平逼近调制(NLM), 5.均压排序:电容电压排序采用冒泡排序,判断桥臂电流方向确定投入切除; 结果: 1.输出的直流电压能够稳定在25.2kV; 2.有功功率,无功功率稳态时波形稳定,有功功率为3.2MW,无功稳定在0Var; 3.网侧电压电流波形均为对称的三相电压和三相电流波形,网侧电流THD=1.47%<2%,符合并网要求; 4.环流抑制后桥臂电流的波形得到改善,桥臂电流THD由9.57%降至1.93%,环流波形也可以看到得到抑制; 5.电容电压能够稳定变化 ,工作点关键词:MMC

    Boost二级升压光伏并网结构的Simulink建模与MPPT最大功率点追踪:基于功率反馈的扰动观察法调整电压方向研究,Boost二级升压光伏并网结构的Simulink建模与MPPT最大功率点追踪:基

    Boost二级升压光伏并网结构的Simulink建模与MPPT最大功率点追踪:基于功率反馈的扰动观察法调整电压方向研究,Boost二级升压光伏并网结构的Simulink建模与MPPT最大功率点追踪:基于功率反馈的扰动观察法调整电压方向研究,Boost二级升压光伏并网结构,Simulink建模,MPPT最大功率点追踪,扰动观察法采用功率反馈方式,若ΔP>0,说明电压调整的方向正确,可以继续按原方向进行“干扰”;若ΔP<0,说明电压调整的方向错误,需要对“干扰”的方向进行改变。 ,Boost升压;光伏并网结构;Simulink建模;MPPT最大功率点追踪;扰动观察法;功率反馈;电压调整方向。,光伏并网结构中Boost升压MPPT控制策略的Simulink建模与功率反馈扰动观察法

    STM32F103C8T6 USB寄存器开发详解(12)-键盘设备

    STM32F103C8T6 USB寄存器开发详解(12)-键盘设备

    2011-2020广东21市科技活动人员数

    科技活动人员数专指直接从事科技活动以及专门从事科技活动管理和为科技活动提供直接服务的人员数量

    Matlab Simulink仿真探究Flyback反激式开关电源性能表现与优化策略,Matlab Simulink仿真探究Flyback反激式开关电源的工作机制,Matlab Simulimk仿真

    Matlab Simulink仿真探究Flyback反激式开关电源性能表现与优化策略,Matlab Simulink仿真探究Flyback反激式开关电源的工作机制,Matlab Simulimk仿真,Flyback反激式开关电源仿真 ,Matlab; Simulink仿真; Flyback反激式; 开关电源仿真,Matlab Simulink在Flyback反激式开关电源仿真中的应用

    基于Comsol的埋地电缆电磁加热计算模型:深度解析温度场与电磁场分布学习资料与服务,COMSOL埋地电缆电磁加热计算模型:温度场与电磁场分布的解析与学习资源,comsol 埋地电缆电磁加热计算模型

    基于Comsol的埋地电缆电磁加热计算模型:深度解析温度场与电磁场分布学习资料与服务,COMSOL埋地电缆电磁加热计算模型:温度场与电磁场分布的解析与学习资源,comsol 埋地电缆电磁加热计算模型,可以得到埋地电缆温度场及电磁场分布,提供学习资料和服务, ,comsol;埋地电缆电磁加热计算模型;温度场分布;电磁场分布;学习资料;服务,Comsol埋地电缆电磁加热模型:温度场与电磁场分布学习资料及服务

    ibus-table-chinese-yong-1.4.6-3.el7.x64-86.rpm.tar.gz

    1、文件内容:ibus-table-chinese-yong-1.4.6-3.el7.rpm以及相关依赖 2、文件形式:tar.gz压缩包 3、安装指令: #Step1、解压 tar -zxvf /mnt/data/output/ibus-table-chinese-yong-1.4.6-3.el7.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm 4、更多资源/技术支持:公众号禅静编程坊

    基于51单片机protues仿真的汽车智能灯光控制系统设计(仿真图、源代码)

    基于51单片机protues仿真的汽车智能灯光控制系统设计(仿真图、源代码) 一、设计项目 根据本次设计的要求,设计出一款基于51单片机的自动切换远近光灯的设计。 技术条件与说明: 1. 设计硬件部分,中央处理器采用了STC89C51RC单片机; 2. 使用两个灯珠代表远近光灯,感光部分采用了光敏电阻,因为光敏电阻输出的是电压模拟信号,单片机不能直接处理模拟信号,所以经过ADC0832进行转化成数字信号; 3. 显示部分采用了LCD1602液晶,还增加按键部分电路,可以选择手自动切换远近光灯; 4. 用超声模块进行检测距离;

    altermanager的企业微信告警服务

    altermanager的企业微信告警服务

    MyAgent测试版本在线下载

    MyAgent测试版本在线下载

    Comsol技术:可调BIC应用的二氧化钒VO2材料探索,Comsol模拟二氧化钒VO2的可调BIC特性研究,Comsol二氧化钒VO2可调BIC ,Comsol; 二氧化钒VO2; 可调BIC

    Comsol技术:可调BIC应用的二氧化钒VO2材料探索,Comsol模拟二氧化钒VO2的可调BIC特性研究,Comsol二氧化钒VO2可调BIC。 ,Comsol; 二氧化钒VO2; 可调BIC,Comsol二氧化钒VO2材料:可调BIC技术的关键应用

    C++学生成绩管理系统源码.zip

    C++学生成绩管理系统源码

    基于Matlab与Cplex的激励型需求响应模式:负荷转移与电价响应的差异化目标函数解析,基于Matlab与CPLEX的激励型需求响应负荷转移策略探索,激励型需求响应 matlab +cplex 激励

    基于Matlab与Cplex的激励型需求响应模式:负荷转移与电价响应的差异化目标函数解析,基于Matlab与CPLEX的激励型需求响应负荷转移策略探索,激励型需求响应 matlab +cplex 激励型需求响应采用激励型需求响应方式对负荷进行转移,和电价响应模式不同,具体的目标函数如下 ,激励型需求响应; matlab + cplex; 负荷转移; 目标函数。,Matlab与Cplex结合的激励型需求响应模型及其负荷转移策略

    scratch介绍(scratch说明).zip

    scratch介绍(scratch说明).zip

    深度学习模型的发展历程及其关键技术在人工智能领域的应用

    内容概要:本文全面介绍了深度学习模型的概念、工作机制和发展历程,详细探讨了神经网络的构建和训练过程,包括反向传播算法和梯度下降方法。文中还列举了深度学习在图像识别、自然语言处理、医疗和金融等多个领域的应用实例,并讨论了当前面临的挑战,如数据依赖、计算资源需求、可解释性和对抗攻击等问题。最后,文章展望了未来的发展趋势,如与量子计算和区块链的融合,以及在更多领域的应用前景。 适合人群:对该领域有兴趣的技术人员、研究人员和学者,尤其适合那些希望深入了解深度学习原理和技术细节的读者。 使用场景及目标:①理解深度学习模型的基本原理和结构;②了解深度学习模型的具体应用案例;③掌握应对当前技术挑战的方向。 阅读建议:文章内容详尽丰富,读者应在阅读过程中注意理解各个关键技术的概念和原理,尤其是神经网络的构成及训练过程。同时也建议对比不同模型的特点及其在具体应用中的表现。

    day02供应链管理系统-补充.zip

    该文档提供了一个关于供应链管理系统开发的详细指南,重点介绍了项目安排、技术实现和框架搭建的相关内容。 文档分为以下几个关键部分: 项目安排:主要步骤包括搭建框架(1天),基础数据模块和权限管理(4天),以及应收应付和销售管理(5天)。 供应链概念:供应链系统的核心流程是通过采购商品放入仓库,并在销售时从仓库提取商品,涉及三个主要订单:采购订单、销售订单和调拨订单。 大数据的应用:介绍了数据挖掘、ETL(数据抽取)和BI(商业智能)在供应链管理中的应用。 技术实现:讲述了DAO(数据访问对象)的重用、服务层的重用、以及前端JS的继承机制、jQuery插件开发等技术细节。 系统框架搭建:包括Maven环境的配置、Web工程的创建、持久化类和映射文件的编写,以及Spring配置文件的实现。 DAO的需求和功能:供应链管理系统的各个模块都涉及分页查询、条件查询、删除、增加、修改操作等需求。 泛型的应用:通过示例说明了在Java语言中如何使用泛型来实现模块化和可扩展性。 文档非常技术导向,适合开发人员参考,用于构建供应链管理系统的架构和功能模块。

    清华大学104页《Deepseek:从入门到精通》

    这份长达104页的手册由清华大学新闻与传播学院新媒体研究中心元宇宙文化实验室的余梦珑博士后及其团队精心编撰,内容详尽,覆盖了从基础概念、技术原理到实战案例的全方位指导。它不仅适合初学者快速了解DeepSeek的基本操作,也为有经验的用户提供了高级技巧和优化策略。

    MXTU MAX仿毒舌自适应主题源码 苹果CMSv10模板.zip

    主题说明: 1、将mxtheme目录放置根目录 | 将mxpro目录放置template文件夹中 2、苹果cms后台-系统-网站参数配置-网站模板-选择mxpro 模板目录填写html 3、网站模板选择好之后一定要先访问前台,然后再进入后台设置 4、主题后台地址: MXTU MAX图图主题,/admin.php/admin/mxpro/mxproset admin.php改成你登录后台的xxx.php 5、首页幻灯片设置视频推荐9,自行后台设置 6、追剧周表在视频数据中,节目周期添加周一至周日自行添加,格式:一,二,三,四,五,六,日

    基于matlab平台的数字信号处理GUI设计.zip

    运行GUI版本,可二开

Global site tag (gtag.js) - Google Analytics