V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  mikicomo  ›  全部回复第 33 页 / 共 72 页
回复总数  1430
1 ... 29  30  31  32  33  34  35  36  37  38 ... 72  
2017-05-23 17:28:44 +08:00
回复了 daopu 创建的主题 Node.js 补了一个 Java 班,然后找的是 NODEJS..
发现 v 站 jojo 粉好多
2017-05-23 12:09:35 +08:00
回复了 mrcola 创建的主题 Android 支付宝又被 PLAY STORE 下架了
@qiukong 6666 老哥高端黑
没啥好争论的吧,就我身边来讲用华为的基本没人说虚拟按键不好的...试了蛮多手机,不带虚拟按键的确不太适应我个人的习惯,所以这东西看个人喜好的。你没办法强迫别人喜欢或不喜欢
2017-05-18 18:52:54 +08:00
回复了 mainzo 创建的主题 问与答 程序员的福音
微微一硬略表尊敬
2017-05-17 22:44:05 +08:00
回复了 mikicomo 创建的主题 问与答 IDEA 报 could not autowire 的问题
@qinxi
No TLD files were found in resource path [/WEB-INF/jsp/].
No TLD files were found in resource path [/WEB-INF/].
本来我的确有 jsp 这个目录,可是现在这个目录已经被我改名叫做 view 了,可是 tomcat 竟然还去这里找,是怎么回事呢?
2017-05-17 21:53:07 +08:00
回复了 mikicomo 创建的主题 问与答 IDEA 报 could not autowire 的问题
@qinxi 是我自己的问题,搞好了= =
2017-05-17 21:31:14 +08:00
回复了 mikicomo 创建的主题 问与答 IDEA 报 could not autowire 的问题
@qinxi 这个我看到过了,但是我设置以后,在 idea 里面运行的时候,还是这样子,貌似没有生效额,是不是 idea 有自己的设置?
2017-05-17 17:56:31 +08:00
回复了 mikicomo 创建的主题 问与答 IDEA 报 could not autowire 的问题
@qinxi
@Sharuru
[RMI TCP Connection(5)-127.0.0.1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.

这个问题也顺便请教下 V 友大大们,虽然不影响程序运行,但是强迫症还是想解决掉他,网上也搜索了很多,但一直没有什么好的方案。
2017-05-17 17:54:40 +08:00
回复了 mikicomo 创建的主题 问与答 IDEA 报 could not autowire 的问题
@qinxi 感谢大兄弟!我在 dao 上加了 @Repository,就 ok 了

@Sharuru 嗯,已解决。
2017-05-15 19:21:31 +08:00
回复了 mikicomo 创建的主题 问与答 一个 Spring 的问题
@stackboom 嗯,还是在思维方式上还没有交给容器来管理这样的思维习惯。。。搞了好几个小时这个问题,谢谢大兄弟了!
2017-05-15 19:12:47 +08:00
回复了 mikicomo 创建的主题 问与答 一个 Spring 的问题
@stackboom
卧槽...是的....我为了方便在 test 里面直接 psvm 里面 new 了,应该是要在 @Controller 或者别的 Compant 下面让 Spring 再把我这个类本身也装配进来是吧》。。。。
2017-05-15 18:58:26 +08:00
回复了 mikicomo 创建的主题 问与答 一个 Spring 的问题
@acrisliu
```
public class ExcelDataPackage {

@Autowired
@Qualifier("ItemIndexService")
private ItemIndexService itemIndexService;

@Autowired
@Qualifier("ItemDetailService")
private ItemDetailService itemDetailService;

private List<ItemIndex> itemIndices;

public int findIndexCache(ItemIndex index){
}

public void bindObject(){

}

public void insertObject(){

}


}

```

我没有加 @Component 注解,我这里只要装配就好了,本身不需要作为一个组件来使用,不用加 @Component 的吧?
而且我加了也依旧装不上
2017-05-15 18:44:51 +08:00
回复了 mikicomo 创建的主题 问与答 一个 Spring 的问题
@LaudOak
```
@Service("ItemIndexService")
public class ItemIndexServiceImpl implements ItemIndexService {

@Autowired
private ItemIndexMapper itemindexmapper;


@Transactional
public ItemIndex selectById(int id) {
return itemindexmapper.selectById(id);

}

@Transactional
public List<ItemIndex> findAll() {

List<ItemIndex> findAll = itemindexmapper.findAll();
return findAll;
}

@Transactional
public int deleteItemIndex(int id) {
return itemindexmapper.deleteItemIndex(id);

}

@Transactional
public int insertItemIndex(ItemIndex itemindex) {

return itemindexmapper.insertItemIndex(itemindex);
}

@Transactional
public int updateItemIndex(ItemIndex itemindex) {

return itemindexmapper.updateItemIndex(itemindex);
}

}
```
我觉得更多人还是重装个系统,打个补丁就完事....甚至打补丁还只是可选项...
2017-05-14 10:43:41 +08:00
回复了 mikicomo 创建的主题 问与答 Git 使用的一个问题
@ghostheaven 大小写敏感的...大家都用 mac 的么?难道 mac 大小写不敏感的?
2017-05-14 00:34:00 +08:00
回复了 mikicomo 创建的主题 问与答 Git 使用的一个问题
@also24 感谢!
2017-05-13 23:47:28 +08:00
回复了 mikicomo 创建的主题 问与答 Git 使用的一个问题
@zhongdong 所以有什么好的办法么?
@lcdtyph NTFS 的
1 ... 29  30  31  32  33  34  35  36  37  38 ... 72  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2805 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 28ms · UTC 14:29 · PVG 22:29 · LAX 07:29 · JFK 10:29
Developed with CodeLauncher
♥ Do have faith in what you're doing.