package com.example.pkm.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class NoteService { @Autowired private TagService tagService; public void createNote(String title, String content) { System.out.println("创建笔记: " + title); tagService.autoTag(content); } }