标签: Java

35 篇文章

thumbnail
把java程序jar包作为windows服务运行,开机自启
spring官方推荐使用winsw来将springboot项目作为服务运行,参考https://docs.spring.io/spring-boot/docs/1.5.9.RELEASE/reference/htmlsingle/#deployment-windows 下载最新发布版winsw: 官方下载地址:https://github.com/…
mybatis新增一条数据 返回主键
mybatis中需要加两个参数: <insert id="addChannel" parameterType="cn.tcmp.entity.Channel_list" useGeneratedKeys="true" keyProperty="ChannelID"> INSERT INTO `channel_list`(Channelt…