?? testserviceimpl.java
字號(hào):
package com.dj.test.service.impl;
import com.dj.dao.TestDao;
import com.dj.test.service.TestService;
public class TestServiceImpl implements TestService {
private TestDao testDao;
/**
* 測(cè)試用例
* @return 一句話
*/
public String say() {
testDao.accDb();
System.out.println("############");
return "";
}
public TestDao getTestDao() {
return testDao;
}
public void setTestDao(TestDao testDao) {
this.testDao = testDao;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -