分类:Java

12 篇文章

自动化添加时间戳到Maven构建中

当我们需要为应用程序打包时,有时需要在打包的文件名中加入时间戳,以区分不同版本的应用程序包。本文将介绍如何在Maven的pom.xml文件中配置,在打包时自动为文件名加上时间戳。通过本文的介绍,您将能够更加方便地管理应用程序包,并快速找到特定版本的应用程序包。...

解决Spring中使用@Autoried出现波浪线提醒的问题

在使用Spring框架,引用Service时采用`@Autoried`时,Idea编译器会提示`Field injection is not recommended`,SpringTeam给出的解决方案为`Always use constructor based dependency injection in your beans. Always use assertions for mandatory dependencies`,翻译过来的意思是`在bean中始终使用基于构造函数的依赖项注入。请始终使用断言强制依赖`。本文将介绍如何解决这个问题。...