Spring中事务分为编程式事务和声明式事务。编程式事务由于需要在代码中硬编码,在实际项目开发中比较少用到。实际开发中用的比较多的就是声明式事务。 声明式事务又分为基于配置的和基于@Transactional注解的。 1…
标签:编程问答
Centos 升级python2到python3版本
最近买了一个服务器,就是腾讯三年活动那个,里面内置的是2.7.5的版本,就想升级一下版本。 以下,是我一路踩坑所得。 下载 wget https://www.python.org/ftp/python/3.6.4/Pyt…
Xcode 10适配(Command CompileSwiftSources failed with a nonzero exit code)
编译失败时,可能会出现这种提示Command CompileSwiftSources failed with a nonzero exit code,但是并没有明确指出问题的来源,此时可以通过在Build Setting…
AndroidStudio提示 "Could not find uast.jar 26.0.1"
项目的build.gradle,如下: buildscript { repositories { google() jcenter() mavenCentral() } } 将google() 提高到最上面。 参考:ht…
RN报错 Could not install the app on the device, read the error above for details. Make sure you hav...
问题: RN-bug-Android运行时,报错 Could not install the app on the device, read the error above for details. Make sure …
xcode 9 提示Could not write to the device.
升级到xcode9之后,有时候真机调试提示“安装失败” “Could not write to the device.” 解决:1、先尝试删除真机上的app 2、直接删除工程的Build文件夹,再…
java.lang.NumberFormatException: For input string: "${jdbc.maxActive}"
一、问题 使用SpringMVC和MyBatis整合,将jdbc配置隔离出来的时候出现下面的错误,百度了很久没有找到解决方法,回家谷歌下,就找到解决方法了,不得不说谷歌就是强大,不废话,下面是具体的错误: Caused …
“The subscription does not exist” when a distributor primary replica fails over to a replica that does not use the same agent profile
Symptoms Consider the following scenario: In Microsoft SQL Server 2017, you have a distribution a…
中文 Tex
\documentclass{article} \usepackage{ctex} \begin{document} 中文English \[E = m c^2\] \end{document}  …
python json dumps与loads有可能犯的错误
json.dumps() 是将一个Python数据结构转换为一个JSON编码的字符串 json.loads() 是将一个JSON编码的字符串转换为一个Python数据结构 如下: >&g…
spring整合mybatis错误:class path resource [config/spring/springmvc.xml] cannot be opened because it does not exist
spring 整合Mybatis 运行环境:jdk1.7.0_17+tomcat 7 + spring:3.2.0 +mybatis:3.2.7+ eclipse 错误:class path resour…
【转】Error:JAVA_HOME is not set and could not be found
如果stop-dfs.sh也报了这个错,把$HADOOP_HOME/libexec/hadoop-config.sh中的如下内容之前加上 export JAVA_HOME=/home/lqr/Tools/jdk1.8.0…