当前位置:网站首页>Activit fragmented deadly pit
Activit fragmented deadly pit
2022-07-06 17:00:00 【Motorcycle loving program ape】
Keng Keng Wawa has walked an extraordinary road
One 、 Configuration integration
1.avtivit7 rely on Springboot And Spring Different
2.Spring To configure activiti7 The configuration file
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- data source -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/activiti"/>
<property name="username" value="root"/>
<property name="password" value="123"/>
<property name="maxActive" value="3"/>
<property name="maxIdle" value="1"/>
</bean>
<!-- Workflow engine configuration bean -->
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
<!-- data source -->
<property name="dataSource" ref="dataSource"/>
<!-- Use spring Transaction manager -->
<property name="transactionManager" ref="transactionManager"/>
<!-- Database policy -->
<property name="databaseSchemaUpdate" value="true"/>
</bean>
<!--
databaseSchemaUpdate Value content of :
flase: The default value is .activiti When it starts , Compare versions saved in database tables , If there is no table or version mismatch , An exception will be thrown .( The production environment is often used )
true: activiti All tables in the database will be updated . If the watch doesn't exist , Automatically create .( It is often used in development )
create_drop: stay activiti Create table at startup , Delete table on close ( You have to shut down the engine manually , To delete the table ).( Unit test common )
drop-create: stay activiti Delete old tables on startup , Then create a new table ( There's no need to manually shut down the engine ).
-->
<!-- Process engine -->
<bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean">
<property name="processEngineConfiguration" ref="processEngineConfiguration"/>
</bean>
<!-- Resource service service -->
<bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService"/>
<!-- Process operation service -->
<bean id="runtimeService" factory-bean="processEngine" factory-method="getRuntimeService"/>
<!-- task management service -->
<bean id="taskService" factory-bean="processEngine" factory-method="getTaskService"/>
<!-- History management service -->
<bean id="historyService" factory-bean="processEngine" factory-method="getHistoryService"/>
<!-- Transaction manager -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- notice -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- Communication behavior -->
<tx:method name="save*" propagation="REQUIRED"/>
<tx:method name="insert*" 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="get*" propagation="SUPPORTS" read-only="true"/>
</tx:attributes>
</tx:advice>
<!-- section , Modify the tangent point configuration according to the specific project
<aop:config proxy-target-class="true">
<aop:advisor advice-ref="txAdvice"
pointcut="execution(*com.itheima.service.impl..(..))"/>
</aop:config>-->
</beans>
3.web.xml Scan to profile

4. In the increase of database connection nullCatalogMeansCurrent=true that will do .

Two 、 Database version
see pom.xml mysql edition
View local mysql Version modification configuration
mysql -uroot -p
Input password
3、 ... and 、 example bug
org.activiti.engine.ActivitiObjectNotFoundException: no processes deployed with key ‘process‘
solve :
activiti The template of must be bpmn20.xml perhaps bpmn ending
Start process instance key For deployment flowchart process Label under IDVisit the page :java.lang.ClassCastException: de.odysseus.el.ExpressionFactoryImpl cannot be cast to javax.el.ExpressionFactory
Content error :
DEBUG [org.springframework.web.servlet.DispatcherServlet] - Error rendering view [org.springframework.web.servlet.view.JstlView: name ‘adMatching’; URL [/WEB-INF/page/adMatching.jsp]] in DispatcherServlet with name ‘SpringMvc’
org.apache.jasper.JasperException: Unable to compile class for JSP
activiti6 solve : With the project el expression jar Filter out the problem of package conflict jar It is good to pack
<exclusions>
<exclusion>
<groupId>de.odysseus.juel</groupId>
<artifactId>juel-api</artifactId>
</exclusion>
</exclusions>

activiti7 solve : With the project el expression jar Filter out the problem of package conflict jar It is good to pack
<exclusions>
<exclusion>
<groupId>de.odysseus.juel</groupId>
<artifactId>juel-api</artifactId>
</exclusion>
</exclusions>
<exclusions>
<exclusion>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
</exclusion>
</exclusions>

- Configure multiple data sources
边栏推荐
- Shell_ 04_ Shell script
- [graduation project] QT from introduction to practice: realize imitation of QQ communication, which is also the last blog post in school.
- @RequestMapping、@GetMapping
- 7-6 sum of combinatorial numbers
- J'ai traversé le chemin le plus fou, le circuit cérébral d'un programmeur de saut d'octets
- Some instructions on whether to call destructor when QT window closes and application stops
- DOS 功能调用
- LeetCode 1552. Magnetic force between two balls
- ByteDance technical Interviewer: what kind of candidate do I want to pick most
- How to generate six digit verification code
猜你喜欢

Many papers on ByteDance have been selected into CVPR 2021, and the selected dry goods are here

One hundred questions of image processing (1-10)

~73 other text styles

~68 Icon Font introduction

Idea resolving jar package conflicts

Erlang installation

Activit零零碎碎要人命的坑

LeetCode 1584. Minimum cost of connecting all points

How to configure hosts when setting up Eureka

High performance mysql (Third Edition) notes
随机推荐
唯有学C不负众望 TOP4 S1E6:数据类型
After the subscript is used to assign a value to the string type, the cout output variable is empty.
~77 linear gradient
How to generate six digit verification code
LeetCode 1447. Simplest fraction
LeetCode 1552. Magnetic force between two balls
Shell_ 02_ Text three swordsman
Ruoyi-Cloud 踩坑的BUG
~83 form introduction
一个数10年工作经验的微服务架构老师的简历
was unable to send heartbeat
~68 Icon Font introduction
~Introduction to form 80
8086 CPU 内部结构
Solr standalone installation
Monomer application concept
字节跳动2022校招研发提前批宣讲会,同学们最关心的10个问题
~70 row high
ByteDance 2022 school recruitment R & D advance approval publicity meeting, students' top 10 issues
LeetCode 1561. The maximum number of coins you can get