#mpl

配置youcompleteme碰到的问题

Q1:进入vim里面后,可以使用ycm的相关命令来看到底出现啦什么问题?    :YcmYcmCompleterYcmForceCompileAndDiagnosticsYcmToggleLogsYcmDebugInfoYcmRestartServerYcmDiagsYcmSho...

getHibernateTemplate()的用法

getHibernateTemplate()spring中获得由spring所配置的hibernate的操作对象,然后利用此对象进行,保存,修改和删除等操作,此方法是在配置了spring以后,hibernate由spring接管,不直接使用hibernate的session了HibernateTemplate提供非常多...
代码星球 ·2021-02-24

Spring Security(二十七):Part II. Architecture and Implementation

Onceyouarefamiliarwithsettingupandrunningsomenamespace-configurationbasedapplications,youmaywishtodevelopmoreofanunderstandingofhowtheframeworkactuallyworksbehi...

Spring Security(二十五):7. Sample Applications

Thereareseveralsamplewebapplicationsthatareavailablewiththeproject.Toavoidanoverlylargedownload,onlythe"tutorial"and"contacts"samplesareincludedinthedistributio...

Spring Security(十一):4. Samples and Guides (Start Here)

IfyouarelookingtogetstartedwithSpringSecurity,thebestplacetostartisourSampleApplications.如果您希望开始使用SpringSecurity,最好的起点是我们的示例应用程序。 SourceDescriptionGuideHel...

Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT) for operation '<>'

1.问题今天又在mysql中遇到了,吐血。 SQL最后加上COLLATEutf8mb4_unicode_ciSELECTt2.cust_idascust_id_ex,t1.*from(SELECT*fromcredit_nigeria.applyWHEREupdateTime>"2019-11-10")...

Django——模板层(template)(模板语法、自定义模板过滤器及标签、模板继承)

前言:当我们想在页面上给客户端返回一个当前时间,一些初学者可能会很自然的想到用占位符,字符串拼接来达到我们想要的效果,但是这样做会有一个问题,HTML被直接硬编码在Python代码之中。1234defcurrent_datetime(request):    now=dateti...

shell -- sample -- 关闭tomcat

#!/bin/bashprocess_name="org.apache.catalina.startup.Bootstrap"shutdown_call=0functionshutdownTomcat(){process_pid=`ps-ef|grep"$process_name"|grep-v"grep"|awk'{...
代码星球 ·2021-02-21

Gradle里面的依赖implementation和api的区别理解

Gradle新版本里面依赖的写法支持implementation和api,下面简单解释两者的区别:  implementation表示依赖,即只依赖不打包进来。  api表示打包,即不仅依赖还打包进来,这样上层就不用重复依赖。  注意:这里的打包是便于理解,是指打包依赖关系而不是打包源代码,也就是说将依赖暴露给上层。 ...

Caused by: org.apache.xerces.impl.io.MalformedByteSequenceException: Invalid byte 3 of 3-byte UTF-8

mac或者linux下编译没有问题,在window上面编译就出现了这个问题。原因是:各个操作系统字符宽度不统一的原因。解决方法:配置window环境变量,如下:环境变量名为:JAVA_TOOL_OPTIONS变量值为:-Dfile.encoding=UTF-8配置完成重启AndroidStudio即可。 ...

spring boot 启动报:Composite-id class must implement Serializable: xxx错误

在对springboot项目进行修改后,重新启动时报如下错误:Composite-idclassmustimplementSerializable:xxxxxx为具体的类找到xxx类,查看是否定义了多个@Id,如下图:如果该实体类对应的表只有一个主键,即图中的id,把linkName上面的@Id注解删除即可,重新启动就...
首页上一页...1213141516...下一页尾页