Fight the Future

Java言語とJVM、そしてJavaエコシステム全般にまつわること

2010-12-12から1日間の記事一覧

jQueryでローカルのJSONファイルを読み込む

参考にさせていただいたサイト ローカルファイルの読み込み - awacio.log http://d.hatena.ne.jp/awacio/20100220/1266625934 jQuery.get()でOK。 $.get("config.json", function(data){ var hoge = $.parseJSON(data); }); $.getJSON("config.json", functi…

Javaで「Access restriction」と出たときの対処

Description Resource Path Location Type Access restriction: The method xxx from the type xxx is not accessible due to restriction on required library xxx\Java\lib\rt.jar xxx.java /xxx line xxx Java Problem と出たとき。参考にさせていただい…

Maven2,3でのプロキシ設定

C:\Documents and Settings\ユーザ名\.m2 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <proxies> <proxy> <active>true</active> </proxy></proxies></settings>