我今天刚刚开始使用Java。我正在尝试为Minecraft服务器制作一个基本测试插件,当用户键入import React from 'react';
import { render } from 'react-dom';
import { Provider } from 'react-redux';
import { Router, Route, IndexRoute } from 'react-router'
import 'babel-polyfill';
import { ApolloProvider, graphql, gql } from 'react-apollo';
import client from './apolloClient';
/*
Import Components
*/
import App from './components/App';
import Single from './components/Single';
import PhotoGrid from './components/PhotoGrid';
/* Import CSS */
import css from './styles/style.styl';
/* Import our data store */
import store, { history } from './store';
/*
Error Logging
*/
import Raven from 'raven-js';
import { sentry_url } from './data/config';
if(window) {
Raven.config(sentry_url).install();
}
/*
Rendering
This is where we hook up the Store with our actual component and the router
*/
render(
<ApolloProvider store={store} client={client}>
{ /* Tell the Router to use our enhanced history */ }
<Router history={history}>
<Route path="/" component={App}>
<IndexRoute component={PhotoGrid} />
<Route path="/view/:postId" component={Single}></Route>
</Route>
</Router>
</ApolloProvider>,
document.getElementById('root')
);
时,它会给出响应消息。
但是,启动服务器时出现此错误。我唯一理解的是它是一个源问题,这可能是我的import语句的问题吗?我直接从Bukkit网站添加了导入,并直接从服务器使用的相同Java文件中添加。
我在游戏中无法识别我所做的命令,我所做的日志输出应该说/Hello
也不起作用。
这是插件jar的链接: https://www.dropbox.com/s/7sphm1gww1fmmx3/Law%27s%20Plugin.jar?dl=0
答案 0 :(得分:0)
您的回答就在错误信息中:
$(document).ready(function(){
$('.trigger').click(function(e){
var link = $(this).attr("href");
$('#create').load(link);
});
});
这意味着在org.bukkit.InvalidDescriptionException: name 'Lawrence's Plugin' contains invalid characters.
plugin.yml
您的description
属性中有一个Bukkit不知道如何处理的角色。一般来说,如果您遇到invalid character
错误,则通常是符号(例如\%$ /&#39;&#34;等等。)
我的猜测,在这种情况下,它是说明'
中的Lawrence's Plugin
,尝试删除它,看看是否有效!