SpringBoot注册Windows服务和启动报错的原因 Windows系统启动Java程序会弹出黑窗口.黑窗口有几点不好.首先它不美观:其次容易误点导致程序关闭:但最让我匪夷所思的是:将鼠标光标选中黑窗口日志信息,程序竟然不会继续执行,日志也不会继续输出.从而导致页面一直处于请求状态.回车后程序才能正常执行.同时客户希望我们能部署在Windows系统上并且做到开机自动启动.针对以上需求将系统程序注册成Windows服务变得尤为重要. 针对于SpringBoot程序,目前主流的方法是采用win…
在一个项目中,我们有时候会把一些配置信息写入到一个配置文件中,在java代码中读取配置文件的信息.在此记录下读取属性文件中的内容. 在springboot项目中,springboot的配置文件可以使用属性文件,也可以使用yaml文件.建议使用yaml文件来做springboot的配置文件.在springboot中,加载application.yaml文件可以放在多处,例子中默认放在classpath的类路径下. 1.项目的结构图  2.项目的启动类 @SpringBootApplication…
描述:Spring框架中,@Resource注解报错,在书写时没有自动提示 解决方法:因为maven配置文件的pom.xml文件中缺少javax.annotation的依赖,在pom.项目路中加入依赖即可 <!-- Javax Annotation --> <dependency> <groupId>javax.annotation</groupId> <artifactId>jsr250-api</artifactId> <v…
1.编写javabean: package com.example.springboot.bean; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; import java.util.Date; import java.util.List; import java.util.Map; /** *…
记一下 MAC OS 中mount nfs 报错问题. 环境和配置文件 NFS 服务端 Ubuntu 安装 apt install nfs-kernel-server 服务端的配置文件 cat /etc/exports /nfsdata 192.168.22.1/26(rw,sync,insecure,no_root_squash) CentOS 下测试挂载 yum install nfs-utils -y mount -t nfs -o rw 192.168.22.8:/nfsdata /tm…
解决Eclipse+maven中的无故报错 错误: One or more constraints have not been satisfied. Deployment Assembly跟java版本不匹配 解决方法 在pom.xml文件中添加以下代码,即可解决该类型报错 <profile> <id>jdk-1.8</id> 另外一种激活方式 <activation> <activeByDefault>true</activeByDefa…
在hue中访问hdfs报错: Cannot access: /. Note: you are a Hue admin but not a HDFS superuser, "hdfs" or part of HDFS supergroup, "supergroup". 原因:hue.ini配置文件中, server_user=root    server_group=root    default_user=root 这3个配置忘记把注释去掉了.…
Support for the experimental syntax 'jsx' isn't currently enabled (32:12): 30 | }, 31 | render() { > 32 | return <><div class="title">八皇后问题</div></> | ^ 33 | } 34 | }; 35 | Add @babel/preset-react (https://git.io/JfeDR…
今天,下了个模版,但是导进去的时候发现js会报错.看了下其他都没有错误.而有一个js报错误,请原谅我有点红色强迫症,不能留一点红色 . 错误如下:Syntax error on token "Invalid Regular Expression Options", no accurate correction available jqueryjQueryJQUERYJqueryJQueryjquery 报错 先确定js是不是有错误,没有错误,则可以用这个方法解决MyEclipse中的j…
关于Entity Framework中的Attached报错的问题,我这里分为以下几种类型,每种类型我都给出相应的解决方案,希望能给大家带来一些的帮助,当然作为读者的您如果觉得有不同的意见或更好的方法,欢迎一起探讨! 1.单个实体对象在进行改删时出现Attached报错,解决方案,请参见: http://www.cnblogs.com/zuowj/p/4523075.html http://www.cnblogs.com/scy251147/p/3688844.html 原理:清除context…