- 浏览: 12210 次
- 性别:
- 来自: 上海
最新评论
文章列表
如何在maven项目中配置jetty 数据源:
1. 在src\main\webapp\WEB-INF目录下,新建文件jetty-env.xml.<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd"> <Configure>< ...
今天导入代码时,src变成了包名:
解决方法如下:
1.右击项目属性
2.java compiler
3. Enable project specific settings
最近在学spring. 在学习到spring集成jms的时候碰到了topic持久订阅的问题。几经努力,终于找到了配置方法。在此分享下。如有更好的方法,望分享下。配置文件如下:
applicationContext-sender.xml
-----------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//E ...
java 文件读写,路径配置总结:
1. File 对象的getAbsoluteFile(),getAbsolutePath()方法,文件放在项目下面。
FileInputStream fio = new FileInputStream(new File("information.properties").getAbsoluteFile());
FileInputStream fio = new FileInputStream(new File("information.properties").getAbsolutePath());
项目结构:
p ...
public class ParseXml {
private static XPath xpath = null;
public static Document getDodument(String fileName) throws ParserConfigurationException, SAXException, IOException{
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuil ...