我没有修改过模板.
我编辑controller模板当前部分内容如下
@RestController
@RequestMapping("/${pathName}")
public class ${className}Controller {
@Autowired
但是生成后头部文件如下,跟生成的serviceImpl内容完全一致.感觉生成Controller时候调用错模板了吧
@Service("xxxArticleService")
public class XxxArticleServiceImpl implements XxxArticleService {
我没有修改过模板. 我编辑controller模板当前部分内容如下 @RestController @RequestMapping("/${pathName}") public class ${className}Controller { @Autowired 但是生成后头部文件如下,跟生成的serviceImpl内容完全一致.感觉生成Controller时候调用错模板了吧 @Service("xxxArticleService") public class XxxArticleServiceImpl implements XxxArticleService {