我的JBoss控制台应用说我的数据源是" java:/ mydb"
如果我使用
Properties properties = new Properties();
properties.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.remote.client.InitialContextFactory");
DataSource ds = (DataSource) (new InitialContext()).lookup("java:/mydb");
我收到NoInitialContextException。 如果我做了
static void Main(string[] args)
{
Console.WriteLine("Geef een getal in?");
double getal1 = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Geef een tweede getal in?");
double getal2 = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Geef een derde getal in?");
double getal3 = Convert.ToDouble(Console.ReadLine());
if (getal1 > getal2 && getal1 > getal3)
{
Console.WriteLine(getal1 + "is het grootste getal");
}
if (getal2 > getal1 && getal2 > getal3)
{
Console.WriteLine(getal2 + "is het grootste getal");
}
if( getal3 > getal2 && getal3 > getal1 )
{
Console.WriteLine(getal3 + "is het grootste getal");
}
}
我收到IllegalArgumentException找不到匹配的XNIO提供程序。我不确定从哪里开始。