标签: intellij-idea repository spring-data-jpa live-templates file-templates
"创建新测试" IntelliJ中的对话框
自动创建测试类。测试类是自动生成的类,基于选定的类。
我可以创建自己的模板对话框吗?
我想创建像这样的类
public interface AddressRepo extends CrudRepository<Address, Long> { }
其中Address是原始类的名称。
Address